<div>Hi Everyone,</div>
<div>&nbsp;</div>
<div>I have a DSL connection running PPPoE with a routed subnet, the service provider indicated that it will use the 1st IP address of the routed subnet for the router (WAN?), and the rest of the IPs of the subnet can be assigned to the hosts behind the router.</div>

<div>&nbsp;</div>
<div>What I want to know is whether I need a bridged interface between the WAN and LAN side of the router (Cisco877), and what configuration will help me achieve this?</div>
<div>&nbsp;</div>
<div>Thanks to all!</div>
<div>&nbsp;</div>
<div>What I have so far (was doing NAT before, but probably will remove it later):</div>
<div>&nbsp;</div>
<div>interface ATM0<br>&nbsp;no ip address<br>&nbsp;no atm ilmi-keepalive<br>&nbsp;dsl operating-mode auto <br>&nbsp;service-policy output SIP-priority<br>!<br>interface ATM0.1 point-to-point<br>&nbsp;description $FW_OUTSIDE$$ES_WAN$<br>&nbsp;pvc 8/35 <br>
&nbsp; pppoe-client dial-pool-number 1<br>&nbsp;!<br>!<br>interface FastEthernet0<br>!<br>interface FastEthernet1<br>!<br>interface FastEthernet2<br>!<br>interface FastEthernet3<br>!<br>interface Vlan1<br>&nbsp;description $ETH-SW-LAUNCH$$INTF-INFO-HWIC 4ESW$$ES_LAN$$FW_INSIDE$<br>
&nbsp;ip address 192.168.0.1 255.255.255.0<br>&nbsp;ip nat inside<br>&nbsp;ip virtual-reassembly<br>&nbsp;ip tcp adjust-mss 1412<br>!<br>interface Dialer0<br>&nbsp;description $FW_OUTSIDE$<br>&nbsp;ip address negotiated<br>&nbsp;ip mtu 1452<br>&nbsp;ip nat outside<br>
&nbsp;ip virtual-reassembly<br>&nbsp;encapsulation ppp<br>&nbsp;dialer pool 1<br>&nbsp;dialer-group 1<br>&nbsp;no cdp enable<br>&nbsp;ppp authentication pap callin<br>&nbsp;ppp pap sent-username <a href="mailto:xxxx@xxxx">xxxx@xxxx</a>&nbsp;password 7 xxxx<br>!<br>
ip forward-protocol nd<br>ip route 0.0.0.0 0.0.0.0 Dialer0<br>!<br>ip nat translation udp-timeout never<br>ip nat inside source list 1 interface Dialer0 overload</div>