将Cisco 877configuration为Internet和Cisco ASA 5505之间的桥梁

ISP ADSL —- Cisco 877路由器—- Cisco ASA 5505

我有上面的连接。 我想避免在Cisco 837路由器上使用NAT,并将ASA直接放在Internet上。 但是,我必须使用837连接到ISP – ASA没有ADSL接口。

我知道如何configurationASA来处理pppoe连接,但不知道如何configuration837作为ADSL和以太网之间的桥梁

这就是所谓的RFC1483桥接?

下面的configuration是否允许ASA做所有的pppoe协商,而让877做的只不过是桥接以太网和ADSL?

no ip routing interface Ethernet0 no ip address no ip directed-broadcast bridge-group 1 encapsulation aal5snap bridge-group 1 bridge 1 protocol ieee 

不幸的是,这是我们唯一一个连接到互联网的800系列路由器的网站,所以我不是很熟悉它,直到我到达那里,我才能正确地testingconfiguration。

这是我使用的configuration,它的工作原理:

 no service pad service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname Router ! boot-start-marker boot-end-marker ! logging message-counter syslog ! no aaa new-model ! ! dot11 syslog ip source-route no ip routing ! no ip cef no ipv6 cef ! multilink bundle-name authenticated ! archive log config hidekeys ! interface ATM0 no ip address no ip route-cache no atm ilmi-keepalive pvc 8/35 encapsulation aal5snap ! bridge-group 1 ! interface FastEthernet0 ! interface FastEthernet1 ! interface FastEthernet2 ! interface FastEthernet3 ! interface Vlan1 no ip address no ip route-cache bridge-group 1 ! ip forward-protocol nd no ip http server no ip http secure-server ! control-plane ! bridge 1 protocol ieee ! line con 0 no modem enable line aux 0 line vty 0 4 login ! scheduler max-task-time 5000 end 

来源是思科DSL路由器configuration和故障排除指南 – 思科DSL路由器:PC作为一个PPPoE客户端 ,需要为877稍微调整。