linux下修改自动获取IP方法
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-03-23
然后到网上看了些人家用netconfig的方法,这工具在现在 的新版系统中已经没有了,如果需要得自己下载rpm软件包. [root@localhost]# netconfig -d eth0 注:配置eth0 [root@localhost]# netconfig -d eth1 注:配置eth1 netconfig 的用法如下: [root@localhost]# netconfig --help 注:帮助; --bootproto=(dhcp|bootp|none) Boot protocol to use( --gateway=STRING Network gateway(指定网关) --ip=STRING IP address(指定IP地址) --nameserver=STRING Nameserver(指定DNS客户端) --netmask=STRING Netmask(指定网络掩码) --hostname=STRING Hostname( 指定主机名) --domain=STRING Domain name(指定域名) -d, --device=STRING Network device (指定网络设备) --nodns No DNS lookups (没有DNS查询) --hwaddr=STRING Ethernet hardware address (指定网卡的物理地址) --description=STRING Description of the device (描述性文字) Help options: (帮助选项) -?, --help Show this help message --usage Display brief usage message 设置网卡的DHCP模式自动获得IP [root@localhost]# netconfig -d eth0 --bootproto=dhcp 手动设置网卡的IP等 [root@localhost]# netconfig -d eth0 --ip=192.168.1.33 --netmask=255.255.255.0 --gateway=192.168.1.1 本文出自 “西边太阳” 博客,请务必保留此出处http://thgenius.blog.51cto.com/1042803/729091 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于linux下修改自动获取IP方法的所有评论