將 IP 新增到介面
可以通過 DHCP 或靜態分配獲得介面的 IP 地址
DHCP 如果連線到執行 DHCP 伺服器的網路,dhclient
命令可以獲取介面的 IP 地址
$ dhclient <interface>
或者,你可以更改/etc/network/interfaces
檔案,以便在啟動時啟動介面並獲取 DHCP IP
auto eth0
iface eth0 inet dhcp
使用/etc/network/interfaces
檔案的靜態配置(永久更改)
如果要靜態配置介面設定(永久更改),可以在/etc/network/interfaces
檔案中執行此操作。
例:
auto eth0 # Bring up the interface on boot
iface eth0 inet static
address 10.10.70.10
netmask 255.255.0.0
gateway 10.10.1.1
dns-nameservers 10.10.1.20
dns-nameservers 10.10.1.30
系統重啟後,這些更改仍然存在。
使用 ifconfig
實用程式進行靜態配置(臨時更改)
可以使用 ifconfig
實用程式將靜態 IP 地址新增到介面,如下所示
$ ifconfig <interface> <ip-address>/<mask> up
例:
$ ifconfig eth0 10.10.50.100/16 up