IP协议
IP首部
首部长度最长为60个字节。一般为20个字节。字段值为5。(5*4=20)。4字节是IPV4标准定义的。
主机号全0表示网络号,主机号全1表示广播地址。
子网的划分能够减少路由表的规模。
Ubuntu Linux下修改网络配置文件
/etc/network/interfaces
设置DHCP
auto eth0
iface eth0 inet dhcp
设置静态ip地址
auto eth0
iface eth0 inet static
address 192.168.150.21
gateway 192.168.150.1
netmask 255.255.255.0
设置完成后运行/etc/init.d/networking restart 生效