实验拓扑如上图,准备4台Linux主机(RHEL5)。首先要确保client主机能自动获取DHCPServer分配的IP地址,然后再搭建DHCPrelay(中继代理)服务器,最后要求客户机通过DHCPrelay获取IP地址。首先要保证route这台主机有2块网卡,在虚拟机中做实验要确保DHCPServer和eth0的网卡在同..
分类:
其他好文 时间:
2014-11-04 19:54:00
阅读次数:
312
1. 配置静态ip地址$sudo vi /etc/network/interfaces原有内容只有如下两行:auto loiface lo inet loopback向末尾追加以下内容:auto eth0iface eth0 inet staticaddress 192.168.0.33gatewa...
分类:
系统相关 时间:
2014-11-04 16:41:04
阅读次数:
192
系统环境:Ubuntu 8.04xen-3.3.1错误提示:$xend startDevice “eth0” does not existifdown: interface eth0 not configured具体场景:使用xen桥接的模式下启动xend时候出现了错误,说eth0找不到。运行ifc...
分类:
其他好文 时间:
2014-11-04 12:39:02
阅读次数:
258
修改 /etc/network/interfaces文件 添加以下内容
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
...
分类:
系统相关 时间:
2014-11-04 11:11:59
阅读次数:
195
1、确定socket的参数
根据图一,我们可以看出arp,rarp和ip虽然同属于网络层(又名IP层),但是他们的数据包装是独立的。虽然icmp和igmp也处在IP层,但是它们又需要ip数据报的包装。所以我们在为arp和rarp建立socket的时候,就不能利用ip的原始数据报(SOCK_RAW)了,我们需要最原始的以太网帧的数包(SOCK_PACKET);在对于网络类型的选择上,可以根据需要选择IPv4(AF_INET)或IPv6(AF_INET6);arp的协议类型跟以太网帧数据类型一样,所以应该是0x...
分类:
系统相关 时间:
2014-11-04 11:07:02
阅读次数:
321
example: ./netspeed eth0 1 #!/bin/bash 2 3 INTERVAL="1" # update interval in seconds 4 5 if [ -z "$1" ]; then 6 echo 7 echo usage: $0 [network-inter.....
分类:
系统相关 时间:
2014-11-04 10:58:29
阅读次数:
197
vm使用克隆出来的虚拟机,网卡名称变成eth1,要把这个eth1改成eth0,参照如下步骤:查看eth1对应的mac地址ifconfig如:eth1:00:0C:29:74:F2:99修改/etc/sysconfig/network-scripts/ifcfg-eth0的mac地址为eth1的mac地址由于vm克隆过来,network-scripts目录下没有eth1的文件,目..
分类:
其他好文 时间:
2014-11-03 16:35:54
阅读次数:
155
一.tc的简介tc,即trafficcontrol,顾名思义,tc是linux进行流量控制的工具.通过tc,你可以控制网络接口发送数据的速率.每个网络接口(如:eth0,ppp0)都有一个队列,用于管理和调度待发的数据.tc的工作原理就是,通过设置不同类型的网络接口队列,从而改变数据包发送的速率和优先级,达到..
分类:
系统相关 时间:
2014-11-03 01:29:23
阅读次数:
388
CentOS 虚拟机设置完ip地址,重启网络服务报错:# service network restartShutting down loopback interface: [ OK ]Bringing up loopback interface: [ OK ]Bringing up interfac...
分类:
其他好文 时间:
2014-11-02 22:23:50
阅读次数:
226
安装时添加 ngx_cache_purge 模块 ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-ipv6 --add-...
分类:
其他好文 时间:
2014-11-02 07:09:54
阅读次数:
650