目录
一、防火墙接口互联接口
1.防火墙支持的接口及板卡
下一代防火墙接口及扩展卡支持以太网电口和光口两种
2.物理链接线缆
屏蔽与非屏蔽双绞线
单模光纤(长距)与多模光纤(短距)
光纤连接器
3.支持接口种类
(1)物理接口
三层以太网接口,二层以太网接口
(2)逻辑接口
VT接口,Dialer接口
Tunnel接口,Null接口 在web界面无法配置
VLAN接口
三层以太网子接口
Eth-Trunk接口,Loopback接口(不需要划zone)
二、相关配置命令
1.配置三层接口IP地址
#1.配置静态IP interface 接口 ip address IP地址 子网掩码 #2.配置DHCP获取IP(可选项) interface 接口 dhcp client enalbe #3.配置双工、速度、MTU(可选) interface 接口 undo negotiation auto duplex full speed 1000 mtu 1500 #4.配置描述和别名 description 描述 alias 别名 #5.配置网管功能 service-manage enable service-manage http https ping ssh permit
2.配置PPPOE拨号接口
#1.配置dialer接口 interface Dialer0 link-protocpl ppp ppp chap user user1 ppp chap password cipher yourpasswd ppp pap loacl-user user password cipher yourpasswd ppp ipcp dns admit-any ——clinet配置 ip address ppp-negotiate dilaler user user1 dilaler bundle 1 #2.绑定dialer到物理接口上 interface 接口 pppoe-client dial-bundle-number 1 ipv4
3.配置VLANIF接口、子接口、回环接口
#1.配置VLANIF接口 vlan batch 10 20 interface VLANIF 10 ip address IP地址 子网掩码 #2.配置三层子接口 interface g1/0/3.10 vlan-type dot1q 10 ip address IP地址 子网掩码 interface g1/0/3.20 vlan-type dot1q 20 ip address IP地址 子网掩码 #3.配置环回接口 interface loopback 0 ip address IP地址 子网掩码
4.配置二层互联接口
#1.配置VLAN vlan batch 10 20 #2.配置Access接口 interface G1/0/1 portswich port link-type access port access vlan 10 #3.配置Hybrid接口 interface G1/0/2 portswitch port linl-type hybrid port hybrid pvid 20 port hybird vlan 20 untagged #4.配置Trunk接口 interface G1/0/3 portswitch port link-type trunk port trunk pvid 1 port trunk permit vlan 10 20