日期:2014-05-16  浏览次数:20868 次

linux 上网设置

1) 通过mii-tool指令
?????? [root@localhost root]# mii-tool
??????? eth0: negotiated 100baseTx-FD, link ok
??????? eth1: no link
?????? 或
?????? [root@localhost root]# mii-tool -v
??????? eth0: negotiated 100baseTx-FD, link ok
????????? product info: vendor 00:50:43, model 2 rev 3
????????? basic mode:?? autonegotiation enabled
????????? basic status: autonegotiation complete, link ok
????????? capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
????????? advertising: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
????????? link partner: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
??????? eth1: no link
????????? product info: vendor 00:50:43, model 2 rev 3
????????? basic mode:?? autonegotiation enabled
????????? basic status: no link
????????? capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
????????? advertising: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
?????? 或
????? [root@localhost root]# mii-tool -w
?????? 21:20:33 eth0: negotiated 100baseTx-FD, link ok
?????? 21:20:33 eth1: no link

?

命令行模式下敲命令:

进入这个目录

cd /etc/sysconfig/network-scripts/

编辑文件:

vi ifcfg-eth0

?

打开之后的样子:

DEVICE=eth0
BOOTPROTO=dhcp
IPADDR=192.168.1.100
NETMASK=255.255.255.0
NETWORK=192.168.1.0
BROADCAST=192.168.1.255
ONBOOT=yes
MII_NOT_SUPPORTED=no

?

按i键进入编辑模式

把BOOTPROTO=dhcp改为BOOTPROTO=static

下面的IP地址子网掩码不用我说了吧。

改完了按ESC退出编辑模式,再按一个冒号“:”,输入wq回车。

IP就配完了。

?

设置网关

编辑文件:vi /etc/sysconfig/network

打开的界面:

HOSTNAME=XXX.XXX.XXX
NETWORKING=yes
GATEWAY=192.168.1.1

修改GATEWAY=192.168.1.1条目,把192.168.1.1改成你的网关地址。

?

设置DNS:

编辑文件:vi /etc/resolv.conf

打卡界面如下:

search XXX.XXX
nameserver 218.30.19.40
nameserver 61.134.1.4
nameserver 后面就是你的DNS地址了,会改了吧。

?

全改完了,重新启动网络服务

service network restart 回车!

?

?

????? //mii-tool主要是用于配置网卡工作模式的指令,同时也可以进行查询、监控等工作!

???
?? 2)?
???? [root@localhost /]# /etc/init.d/network status
????? Configured devices:
????? lo eth0 eth1
????? Currently active devices:
????? lo eth0
???? 等同于
???? [root@localhost root]# service --status-all
????? ............
????? ............

?

Configured devices:
????? lo eth0 eth1
????? Currently active devices:
????? lo eth0
????? ............
????? ............