日历存档: 2010 年 11 月 20 日

简单设置关闭恶心的QQ邮箱漂流瓶

分类:乱七八糟日期:2010-11-20 - 18:59:13评论:2条作者:老谢

本人一直使用QQ邮箱

但最近腾讯开通的漂流瓶服务实在是恶心,有事没事飘来几个瓶子

个人感觉跟垃圾邮件没什么区别

无聊的人才会扔那玩意

然后在进入漂流瓶的操作界面,发现并没有关闭或者注销之类的功能

便以为是腾讯强制推广的一款产品

今天去设置,无意间看到可以关掉,所以发本文希望对跟一样需要关闭的朋友有帮助

具体操作是,进入邮箱后,点击“设置”,如图

简单设置关闭恶心的QQ邮箱漂流瓶

利用三层交换机vlan间通信

分类:网络技术日期:2010-11-20 - 16:02:24评论:1条作者:老谢

利用三层交换机vlan间通信

首先在交换机上配置vlan

配置过程如下

Switch>en
Switch#conf termi
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 2
Switch(config-vlan)#exit
Switch(config)#vlan 3
Switch(config-vlan)#exit
Switch(config)#int fa 0/2
Switch(config-if)#sw access vlan 2
Switch(config-if)#int fa 0/3
Switch(config-if)#sw access vlan 2
Switch(config-if)#int fa 0/4
Switch(config-if)#sw access vlan 3
Switch(config-if)#int fa 0/5
Switch(config-if)#sw access vlan 3
Switch(config-if)#int fa 0/1
Switch(config-if)#sw mode trunk

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
Switch(config-if)#no shutdown

我们现在分别ping一下看看

利用三层交换机vlan间通信

vlan2内的192.168.1.3可以ping通

vlan3的192.168.2.2掉包

我们开始配置路由器

Switch>enable
Switch#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 2
Switch(config-vlan)#exit
Switch(config)#vlan 3
Switch(config-vlan)#exit
Switch(config)#int fa 0/1
Switch(config-if)#sw mode trunk
Switch(config-if)#no shutdown
Switch(config-if)#int vlan 2

%LINK-5-CHANGED: Interface Vlan2, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan2, changed state to upSwitch(config-if)#ip address 192.168.1.1 255.255.255.0
Switch(config-if)#no shutdown
Switch(config-if)#int vlan3

%LINK-5-CHANGED: Interface Vlan3, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan3, changed state to upSwitch(config-if)#ip add 192.168.2.1 255.255.255.0
Switch(config-if)#no shutdown
Switch(config-if)#end

配置完毕,我们可以show下路由表

下面我们ping试试看

利用三层交换机vlan间通信

vlan2和vlan3已经可以正常通信