除了通用的ifconfig外,对于Redhat/Fedora发行版,有专用的配置工具-netconfig。比较而言,netconfig可以设置IP获取方式(
静态或者DHCP获取)等。netconfig--help
Usage:netconfig[OPTION...]
--bootproto=(dhcp|bootp|none)Bootprotocoltouse
--gateway=STRINGNetworkgateway
--ip=STRINGIPaddress
--nameserver=STRINGNameserver
--netmask=STRINGNetmask
--hostname=STRINGHostname
--domain=STRINGDomainname
-d,--device=STRINGNetworkdevice
--nodnsNoDNSlookups
--hwaddr=STRINGEthernethardwareaddress
--description=STRINGDescriptionofthedeviceHelpoptions:
-?,--helpShowthishelpmessage
--usageDisplaybriefusagemessage
实例一:设置
网卡的DHCP
模式自动获得IP[root@localhost~]#netconfig-deth0--bootproto=dhcp
实例一:手动设置网卡的IP等[root@localhost~]#netconfig-deth0--ip=192.168.1.33--netmask=255.255.255.0--gateway=192.168.1.1