顺着天性做事,逆着个性做人.
分类:
2005-08-30 21:46:34
每2人为一组,配置好网络环境
虚拟机1:主机名为v1,ip为192.168.学号.2
hostname v1(注销后生效)
ipconfig 192.168.105.2
vi /etc/hosts
192.168.105.2 v1
虚拟机2:主机名为v2,ip为192.168.学号.3
hostname v2
ipconfig 192.168.105.3
192.168.105.3 v2
1)修改v1的telnet的端口为2323,v2的telnet的端口为2300,并互相用主机名进行telnet实验
(即在v1上运行telnet v2 2300,在v2上运行telnet v1 2323)
chkconfig --list telnet (检查telnet服务是否开启)
chkconfig telnet on(开启服务,reboot)
vi /etc/services
telnet 2323/tcp
telnet 2300/tcp
2)临时修改v1和v2的eth0的mac地址(随便改个)
ifconfig eth0 down
ifconfig eth0 hw ether 11:11:11:11:11:11
ifconfig eth0 up
永久修改v1和v2的eth0的mac地址(随便改个)
vi /etc/rc.d/init.d/network
ifconfig eth0 hw ether 11:11:11:11:11:11
reboot
3)给v1添加3个ip,分别为192.168.学号.4、192.168.学号.6、192.168.学号.8
ifconfig eth0:0 192.168.105.4
ifconfig eth0:1 192.168.105.6
ifconfig eth0:2 192.168.105.8
给v2添加3个ip,分别为192.168.学号.5、192.168.学号.7、192.168.学号.9
ifconfig eth0:0 192.168.105.5
ifconfig eth0:1 192.168.105.7
ifconfig eth0:2 192.168.105.9
添加完ip后,运行ifconfig查看是否设置正确。
设置使得在v1上运行ping pp,回显的ip是192.168.学号.4;
在v2上运行ping pp,回显的ip是192.168.学号.5;
在v1和v2上运行ping qq,回显的ip都是192.168.学号.6
4)发一封Email到,收取自动回复的关于如何获取rfc的Email
标题为“gettingrfcs”,内容为“help:ways_to_get_rfcs”,信件内容为纯文本。
5)访问,查找rfc2616,看看是关于什么协议的描述定义。
http协议。
重启进程:/etc/rc.d/init.d restart