Wednesday, August 23, 2006

在 Linux 中手动设置 IP

在 Linux 中手动设置 IP 可用:

1. 系统自带的可视化工具
2. /sbin/ifconfig
3. 修改 /etc/network/interfaces

配置好的 interfaces 文件内容形如:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address
netmask <子网掩码>
gateway <网关>

auto eth1
iface eth1 inet dhcp

auto eth2
iface eth2 inet dhcp

No comments: