Dave Heavy Industries » MTU http://www.daveheavyindustries.com Dave Heavy Industries - blog Mon, 12 Aug 2013 00:24:10 +0000 en-US hourly 1 http://wordpress.org/?v=3.6 iinet cisco 877 config http://www.daveheavyindustries.com/2011/09/03/iinet-cisco-877-config/ http://www.daveheavyindustries.com/2011/09/03/iinet-cisco-877-config/#comments Sat, 03 Sep 2011 06:59:25 +0000 admin http://wp.daveheavyindustries.com/?p=193 This is the config I'm recommending for people running cisco 877's on iinet. feel free to post back with any amendments.
config working on IOS 12.4(24)T3

replace [username] with your iinet username and [password] with your iinet password.

hostname router
ip dhcp pool general
network 10.10.10.0 255.255.255.0
dns-server 10.10.10.1
default-router 10.10.10.1
domain-name router.local
!
ip dns server
ip domain name router.local
ip name-server 203.0.178.191
interface ATM0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
no ip mroute-cache
no atm ilmi-keepalive
!
interface ATM0.1 point-to-point
description $ES_WAN$$FW_OUTSIDE$
pvc 8/35
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
!
interface FastEthernet0
switchport access vlan 1
!
interface FastEthernet1
switchport access vlan 1
!
interface FastEthernet2
switchport access vlan 1
!
interface FastEthernet3
switchport access vlan 1
!
interface Vlan1
description --- INSIDE INTERFACE ---
ip address 10.10.10.1 255.255.255.0
ip nat inside
ip virtual-reassembly
ip tcp adjust-mss 1412
!
interface Dialer1
description --- OUTSIDE INTERFACE ---
ip address negotiated
ip mtu 1452
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
no cdp enable
ppp authentication chap pap callin
ppp chap hostname [USERNAME]@iinet.net.au
ppp chap password password 0 [PASSWORD]
ppp pap sent-username [USERNAME]@iinet.net.au  password [PASSWORD]
!
ip access-list extended nat
permit ip 10.10.10.0 0.0.0.255 any
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
no ip http secure-server
ip dns server
ip nat inside source list nat interface Dialer1 overload

[facebook_ilike]
]]>
http://www.daveheavyindustries.com/2011/09/03/iinet-cisco-877-config/feed/ 0
Cisco 877 TPG Config http://www.daveheavyindustries.com/2011/02/07/cisco-877-tpg-config/ http://www.daveheavyindustries.com/2011/02/07/cisco-877-tpg-config/#comments Mon, 07 Feb 2011 06:51:40 +0000 admin http://wp.daveheavyindustries.com/?p=91 Well, TPG uses PPPoE rather than PPPoA like most ISP, and there were a few issues with the MSS before my TPG was working correctly. Now it runs like a dream, no complaints at all.

I'll post the relevant sections below

config working on IOS 12.4(24)T3

replace [username] with your TPG username and [password] with your TPG password.

hostname router
ip dhcp pool general
network 10.10.10.0 255.255.255.0
dns-server 10.10.10.1
default-router 10.10.10.1
domain-name router.local
!
ip dns server
ip domain name router.local
ip name-server 203.12.160.35
ip name-server 203.12.160.36
ip name-server 203.12.160.37
interface ATM0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
no ip mroute-cache
no atm ilmi-keepalive
!
interface ATM0.1 point-to-point
description $ES_WAN$$FW_OUTSIDE$
pvc 8/35
pppoe-client dial-pool-number 1
!
!
interface FastEthernet0
switchport access vlan 1
!
interface FastEthernet1
switchport access vlan 1
!
interface FastEthernet2
switchport access vlan 1
!
interface FastEthernet3
switchport access vlan 1
!
interface Vlan1
description --- INSIDE INTERFACE ---
ip address 10.10.10.1 255.255.255.0
ip nat inside
ip virtual-reassembly
ip tcp adjust-mss 1452
!
interface Dialer1
description --- OUTSIDE INTERFACE ---
ip address negotiated
ip mtu 1492
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
no cdp enable
ppp authentication pap callin
ppp pap sent-username [USERNAME]@tpg.com.au password 0 [PASSWORD]
!
ip access-list extended nat
permit ip 10.10.10.0 0.0.0.255 any
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
no ip http secure-server
ip dns server
ip nat inside source list nat interface Dialer1 overload

[facebook_ilike]

Thanks Narkotix for correcting a mistake with the dns server config.

]]>
http://www.daveheavyindustries.com/2011/02/07/cisco-877-tpg-config/feed/ 9