Solaris网络管理培训(第一章:网络地址和掩码)
发布时间:2006-10-14 8:48:15   收集提供:gaoqian
 /etc/hostname.interface 
Interface是网卡的型号,有le、hme等。Le是十兆网卡,hme为百兆网卡等等。后面跟一个数字,第一个十兆网卡为le0,第二个为le1;第二个百兆网卡为hme0,第二个为hme1等等。 
文件的内容是这块网卡的名字,如Sunrise、Sunny。 

#more /etc/hostname.le0 
Sunrise 
# more /etc/hostname.hme0 
Sunny 

/etc/hosts文件 
系统名与IP地址的映射 
与/etc/hostname.interface 协同工作,配置本机网卡地址 
# more /etc/hosts 
127.0.0.1 localhost loghost 
172.16.255.1 Sunrise 
172.18.255.1 Sunny 

系统名不是机器名,机器名是唯一的,要更改机器名,用命令:hostname。 

有了/etc/hostname.interface和/etc/hosts两个文件,系统就知道如何配置网卡了,如第一个百兆网卡的名字是Sunny,其对应的地址是172.18.255.1。 


/etc/netmasks文件 
将网络的IP地址与网络地址联系一起,划分子网 
如果是标准网段,则不需要配置 

标准网段: 
A类网:0-127(127用于本地地址) 掩码:255..0.0.0 
B类网:128-191 掩码:255.255.0.0 
C类网:192-223 掩码:255.255.255.0 
D类网:224-254(用于多址广播) 

要配一个B类地址:172.16.255.1掩码为:255.255.255.0,则在/etc/netmasks文件中写:172.16.255.0 255.255.255.0 


ifconfig命令 
检测网络端口状态 
#ifconfig -a 
配置网络端口地址 
#ifconfig le0 172.16.255.1 netmask 255.255.255.0 
配置网络端口状态 
#ifconfig le0 up/down 
配置网络端口是否可用 
#ifconfig le0 plumb/unplumb 

ping命令 
检测网络状态 
测试网络速度 
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50