靜態設定ipubuntu網路配置資訊儲存在 /etc/network/inte***ces 檔案中,
預設內容如下:
auto eth0
iface eth0 inet dhcpauto lo
iface lo inet loopback
設定靜態ip的方法如下:
使用root使用者編輯 /etc/network/inte***ces
i)注釋掉第二行,設定靜態ip有關引數
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.0.189
netmask 255.255.255.0
gateway 192.168.0.1
auto lo
iface lo inet loopback
ii)編輯 /etc/resolv.conf,設定dns
nameserver 210.21.196.6
nameserver 221.5.88.88
iii)關閉後重啟,使新設定生效
$sudo ifconfig eth0 down
$sudo ifconfig eth0 up
ubuntu 配置固定ip
設定ip sudo gedit etc network inte ces auto lo iface lo inet loopback 注意這裡是本地連線,即連了網線的 auto eth0 iface eth0 inet static address 192.168.0.111 netmask 25...
kali配置固定IP位址
kali配置固定ip位址 第一步 開啟控制視窗輸入命令 vim etc network inte ces 按i鍵進行插入修改 其中address 要設定的ip位址 netmask 子碼掩護 gateway 當前主機的預設閘道器 依次按下 esc shift 輸入wq 儲存退出。第二步 輸入命令 vi...
Ubuntu下靜態IP位址的配置
linux下靜態ip位址的配置 設定ip sudo vi etc network inte ces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.221 netmask 255.25...