当前位置: 技术问答>linux和unix
网卡如何配置?
来源: 互联网 发布时间:2015-04-12
本文导语: 我最近装了台Rebian GNU/Linux,网卡在安装时已经配置过,现在想重新配置,具体的命令和步骤是如何,请高手指教!!!(我是一位新手) | vi /etc/network/ifstate/interfaces 修改eth0的设置。对于自...
我最近装了台Rebian GNU/Linux,网卡在安装时已经配置过,现在想重新配置,具体的命令和步骤是如何,请高手指教!!!(我是一位新手)
|
vi /etc/network/ifstate/interfaces
修改eth0的设置。对于自动分配,这样写:
auto eth0
iface eth0 inet dhcp
对于指定地址,这样写:
auto eth0
iface eth0 inet static
address IP地址
netmask 子网掩码
network 子网地址
broadcast 广播地址
gateway 网关地址
其中address和netmask为必须,如果有网关的话,gateway也必须。例如:
address 10.1.2.10
netmask 255.255.255.0
network 10.1.2.0
broadcast 10.1.2.255
gateway 10.1.2.15
修改eth0的设置。对于自动分配,这样写:
auto eth0
iface eth0 inet dhcp
对于指定地址,这样写:
auto eth0
iface eth0 inet static
address IP地址
netmask 子网掩码
network 子网地址
broadcast 广播地址
gateway 网关地址
其中address和netmask为必须,如果有网关的话,gateway也必须。例如:
address 10.1.2.10
netmask 255.255.255.0
network 10.1.2.0
broadcast 10.1.2.255
gateway 10.1.2.15
|
試試這樣做﹕
[root@test network-scripts]# vi ifcfg-eth0:0 (ifcfg-eth0)
# This file is just to be used to test the more IPs
DEVICE=eth0:0
[root@test network-scripts]# vi ifcfg-eth0:0 (ifcfg-eth0)
# This file is just to be used to test the more IPs
DEVICE=eth0:0