Centos7常用命令[網路]

vip1888發表於2018-01-16
Centos7常用命令[網路]
——————————————————————————
網路 – (乙太網和WIFI無線):
# 顯示一個乙太網卡的配置
[root@localhost ~]# ifconfig eth0
# 啟用一個eth0網路裝置  
[root@localhost ~]# ifup eth0
# 禁用一個eth0網路裝置 
[root@localhost ~]# ifdown eth0
# 控制IP地址
[root@localhost ~]# ifconfig eth0 192.168.1.1 netmask 255.255.255.0
# 設定eth0成混雜模式以嗅探資料包(sniffing)
[root@localhost ~]# ifconfig eth0 promisc
# 以dhcp模式啟用eth0
[root@localhost ~]# dhclient eth0


相關文章