日志分类:网络技术

panabit安装准备篇

分类:网络技术日期:2011-01-19 - 13:30:39评论:5条作者:老谢

DSCF2759

 

今天买了两张8139的网卡,准备开始panabit的实验

最近可能一直都在写panabit,安装不打算写很多

主要是简略介绍下这款软件

Panabit是北京派网开发的基于FreeBSD Linux操作系统

开发的应用层流量管理系统,特别针对P2P应用的识别与控制进行开发,其标准版可以免费使用

限制并发连接256个IP地址,足以满足绝大多数中小企业使用。

Panabit流控系统定位于网络设备级OS,需要安装在一台独立计算机中。

Panabit发布的标准版,都是最新研究成果和最新稳定版本,无有效期等限制

完全可以满足DIY百兆级专业流控设备。

Tags:

如何进行子网划分

分类:网络技术日期:2011-01-08 - 21:09:48评论:2条作者:老谢

今天的题目,做错了 看完资料后发帖子,首先科普下

子网划分可以提高IP地址的利用率

私网划分子网只是为了方便管理

例:IP:224.66.77.0 subnet mask:255.255.255.0

下面我们要划分子网,要求要划分6个子网,每个子网30台主机

那么我们先确定下子网掩码是多少

1^2=4 < 6 这个肯定不可以了 1^3=8 > 6 成立,看来我们需要三bit作为网络号

那么我们的子网掩码就是

11111111.11111111.11111111.11100000

11100000(2)化成十进制就是1^7+1^6+1^5=128+64+32=224 即255.255.255.224

这样的话 我们的网络号就是

000 001 010 011 100 101 110 111

IP地址如下:

00000001~00011111

00100001~00111111

01000001~01011111

01100001~01111111

10000001~10011111

10100001~10111111

11000001~11011111

11100001~11111111

转换后就是(0和255不用,一个网管一个广播)

224.66.77.1~224.66.77.30

224.66.77.33~224.66.77.63

224.66.77.65~224.66.77.95

224.66.77.97~224.66.77.127

224.66.77.129~224.66.77.159

224.66.77.161~224.66.77.191

224.66.77.193~224.66.77.223

224.66.77.225~224.66.77.254

单臂路由的配置

分类:网络技术日期:2010-11-25 - 22:37:08评论:4条作者:老谢

单臂路由的配置

Switch>enable
Switch#conf t
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)#switchport access vlan 2
Switch(config-if)#int fa 0/3
Switch(config-if)#switchport access vlan 3
Switch(config-if)#int fa 0/1
Switch(config-if)#switchport mode trunk
Switch(config-if)#end

路由器

Router>enable
Router#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int fa 0/0
Router(config-if)#no shutdown
 
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
Router(config-if)#int fa 0/0.1
 
%LINK-5-CHANGED: Interface FastEthernet0/0.1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.1, changed state to 
Router(config-subif)#encapsulation dot1Q 2
Router(config-subif)#ip add 192.168.1.1 255.255.255.0
Router(config-subif)#exit
Router(config)#int fa 0/0.2
 
%LINK-5-CHANGED: Interface FastEthernet0/0.2, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.2, changed state to 
Router(config-subif)#encapsulation dot1Q 3
Router(config-subif)#ip add 192.168.2.1 255.255.255.0
Router(config-subif)#end

配置telnet登陆及特权模式密码

分类:网络技术日期:2010-11-24 - 21:57:56评论:0条作者:老谢

拓扑图

实验目的:配置pc telnet登陆交换机及特权模式的密码

配置过程如下

Switch>en
Switch#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#int vlan 1
Switch(config-if)#ip add 192.168.1.1 255.255.255.0
Switch(config-if)#no shutdown
 
%LINK-5-CHANGED: Interface Vlan1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up
Switch(config-if)#exit
 
Switch(config)#enable password 123456
Switch(config)#line vty 0 4
Switch(config-line)#password xj123
Switch(config-line)#login
Switch(config-line)#end

pc用telnet登陆

利用三层交换机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已经可以正常通信

三层交换机作用

分类:网络技术日期:2010-11-17 - 22:06:30评论:3条作者:老谢

什么是三层?

三层就是说工作在osi模型第三层的交换机

也就是网络层

三层交换机既然工作在网络层,肯定具有网络层的功能,也就是路由

为什么要使用三层交换机?vlan见的通信必须通过三层交换机来进行。

三次交换机的作用

三层交换机的优势:具有路由的功能,具有交换机的性能

更多三层交换机知识:http://baike.baidu.com/view/44586.htm

冲突域和广播域

分类:网络技术日期:2010-11-15 - 12:50:40评论:5条作者:老谢

广播域

如图所示,这个网络里面,总共四台交换机

这里面包含多少冲突域和广播域呢?

这里面只有一个广播域,但有十个冲突域

判断几个广播域几个冲突域很简单

  • 每个vlan是一个广播域
  • 交换机每个端口是冲突域
  • 交换机之间互连是一个冲突域

在理解之前,大家还是把冲突域和广播域理解清楚

交换机:只可以分隔冲突域,不能分隔广播域

路由器:可以分隔广播域

冲突只有在hub里面存在,可以理解为一个人说话,其他人都需要等待他说完才可以发言,机器越多,排队时间越长,所以最造成网络阻塞,而交换机则可以独立开来,各自说各自的,不用等他人发言完毕就可以说话。