networking
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
networking [2014/03/30 16:31] – created skipidar | networking [2020/12/27 20:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== Networking ===== | ||
+ | |||
+ | == DMZ == | ||
+ | Demilitarized Zone. The Network-Area, | ||
+ | The Computers in DMZ can NOT access Computers in local net. | ||
+ | The Computers in local net CAN access Computers in DMZ, so that they are forwarded to the internet. | ||
+ | |||
+ | == SSH == | ||
+ | SSH is an application, | ||
+ | The receiver SSH decrypts the packages and redirects them to the initial Ports. \\ | ||
+ | So any port may be bypassed thrpugh an ssh tunnel | ||
+ | |||
+ | |||
+ | |||
+ | ==== Tools ==== | ||
+ | |||
+ | == ping == | ||
+ | Checks whether the network can be reached. | ||
+ | Resolves the ip by domain. | ||
+ | |||
+ | == nslookup == | ||
+ | Checks the domain by ip. Can use a concrete DNS server (e.g. the domain DNS server to resolve the domain controller ip in AWS) | ||
+ | |||
+ | < | ||
+ | nslookup google.com | ||
+ | Server: | ||
+ | Address: | ||
+ | |||
+ | Non-authoritative answer: | ||
+ | Name: | ||
+ | Address: 216.58.211.174 | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | nslookup basic.local 21.1.2.35 | ||
+ | Server: | ||
+ | Address: | ||
+ | |||
+ | Name: | ||
+ | Address: 21.1.3.174 | ||
+ | Name: | ||
+ | Address: 21.1.2.35 | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | == traceroute == | ||
+ | traceroute - print the route packets take to network host | ||
+ | |||
+ | https:// | ||
+ | |||
+ | < | ||
+ | traceroute google.com | ||
+ | traceroute to google.com (216.58.211.174), | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | 10 52.93.7.37 (52.93.7.37) | ||
+ | 11 72.14.204.244 (72.14.204.244) | ||
+ | 12 209.85.252.196 (209.85.252.196) | ||
+ | 13 209.85.241.139 (209.85.241.139) | ||
+ | 14 209.85.241.139 (209.85.241.139) | ||
+ | |||
+ | </ |