centos7檢視埠命令
檢視Centos埠命令:
# netstat -lntp #檢視監聽(Listen)的埠
# netstat -antp #檢視所有建立的TCP連線
其他關於檢視伺服器網路資訊命令:
1、檢視Linux系統主機名: Linux學習,http:// linux.it.net.cn
# hostname
localhost.localdomain
2、檢視伺服器IP地址:
# ifconfig|grep "inet addr:"|grep -v "127.0.0.1"|cut -d: -f2|awk "{ print $1}"
192.168.17.238
192.168.1.9
3、檢視linux閘道器:
# route |grep default
default 192.168.1.1 0.0.0.0 UG 0 0 0 em1
4、檢視linux開啟服務:
# chkconfig --list|grep 啟用 #檢視開啟的服務
sshd 0:關閉 1:關閉 2:啟用 3:啟用 4:啟用 5:啟用 6:關閉
httpd 0:關閉 1:關閉 2:關閉 3:啟用 4:關閉 5:關閉 6:關閉
5、檢視伺服器DNS配置:
# cat /etc/resolv.conf
nameserver 192.168.0.66
nameserver 202.106.0.20
6、其他網路資訊:
# iptables -L #檢視防火牆規則
# route -n #檢視路由表
# netstat -s #檢視網路統計資訊
centos7檢視埠命令
檢視Centos埠命令:
# netstat -lntp #檢視監聽(Listen)的埠
# netstat -antp #檢視所有建立的TCP連線
其他關於檢視伺服器網路資訊命令:
1、檢視Linux系統主機名: Linux學習,http:// linux.it.net.cn
# hostname
localhost.localdomain
2、檢視伺服器IP地址:
# ifconfig|grep "inet addr:"|grep -v "127.0.0.1"|cut -d: -f2|awk "{ print $1}"
192.168.17.238
192.168.1.9
3、檢視linux閘道器:
# route |grep default
default 192.168.1.1 0.0.0.0 UG 0 0 0 em1
4、檢視linux開啟服務:
# chkconfig --list|grep 啟用 #檢視開啟的服務
sshd 0:關閉 1:關閉 2:啟用 3:啟用 4:啟用 5:啟用 6:關閉
httpd 0:關閉 1:關閉 2:關閉 3:啟用 4:關閉 5:關閉 6:關閉
5、檢視伺服器DNS配置:
# cat /etc/resolv.conf
nameserver 192.168.0.66
nameserver 202.106.0.20
6、其他網路資訊:
# iptables -L #檢視防火牆規則
# route -n #檢視路由表
# netstat -s #檢視網路統計資訊