Mainstream in Debian:
Misc:
User - none, password - none, phone - *99***1# or *99#.
User and password you get by sending SMS message to 920 number. Phone #777.
DNS to IP address:
$ nslookup example.com
IP to DNS address:
$ nslookup 192.168.1.1
nbtstat.exe command comes with Windows and allows NetBIOS name resolution from cache.
NetBIOS to IP address:
$ nbtstat -c $ nbtstat -a NETBIOSNAME
IP to NetBIOS address:
$ nbtstat -A xxx.xxx.xxx.xxx
List of NetBIOS name:
$ nbtstat -r
List of open ports under Windows:
cmd> netstat # with DNS name resolution, TCP only cmd> netstat -n # without name resolution, TCP only cmd> netstat -a -n # TCP and UDP cmd> netstat -s # show IP, ICMP, TCP, and UDP statistics.
List of open ports under Linux:
$ sudo netstat -tulp
where -t tcp, -u udp, -l local, -p process.
or to use port number instead of protocol name:
$ sudo netstat -tulpn
Windows predefined ports:
Windows:
cmd> netstat -o # show PID cmd> netstat -b # show also cmd name cmd> netstat -b -v # show all modules (.exe and .dll) with full path
Linux:
$ sudo netstat -tulpn $ sudo lsof -i
On Windows:
Overall stats:
netstat.exe -e
List stats per protocol:
netstat.exe -s
List stats per interface:
powershell Get-NetAdapterStatistics
To reset stats (destroys network interfaces so required reboot):
netcfg -d
On Linux:
$ ping 8.8.8.8 $ traceroute 8.8.8.8 $ mtr 8.8.8.8
On Windows:
cmd> ping /t 8.8.8.8 cmd> traceroute 8.8.8.8 cmd> pathping 8.8.8.8