Bethesda's epic sci-fi RPG is here, and it's a big one. From shipbuilding to exploring the surface of Mars, our thoughts so far.
Starfield Review... In Progress
The first trailer for Grand Theft Auto 6 is finally here.
Grand Theft Auto 6 Trailer
We take an in-depth look at Avatar: Frontiers of Pandora and tell you why it should be heavily on your radar!
Avatar: Frontiers of Pandora - a Deep-Dive into its Potential
Range-wise, the ROG Rapture GT6 is phenomenal, and it's ideal for all gaming and non-gaming-related tasks.
ASUS ROG Rapture GT6 WiFi 6 Mesh System Review
Cisco 857 Config for Telstra ADSL2
jmr
Brisbane, Queensland
5498 posts
Crosspostfrom Whirlpool. Basically trying to get this thing to work, and I have NFI about cisco :(

Hey guys,
I am on Bigpond ADSL, currently using a 2Wire modem that shipped with my account. Driving my nuts at the moment because of its inability to handle VOIP.

I have an Cisco 857W from a friend that I would like to configure to use with this service, but I'm having a great deal of trouble doing so.

So far, most helpful information I have found has been in Internode threads. What would I need to modify in the below configuration to have it working with my xx@bigpond.com ADSL2 account??

Also - whats the best way to go from a chunk of text - into the config file in the router ?

How can you print your entire config ??
__________________________________­

Building configuration...

Current configuration : 1699 bytes
!
version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Mandark-RT
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
no ip dhcp use vrf connected
ip dhcp excluded-address 10.0.0.1 10.0.0.100
ip dhcp excluded-address 10.0.0.201 10.0.0.254
!
ip dhcp pool local
network 10.0.0.0 255.255.255.0
dns-server 203.2.75.132 198.142.0.51
domain-name
default-router 10.0.0.1
!
!
ip cef
no ip domain lookup
!
!
!
interface ATM0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
!
interface ATM0.1 point-to-point
no snmp trap link-status
pvc 8/35
pppoe-client dial-pool-number 1
!
!
interface FastEthernet0
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
!
interface Dot11Radio0
no ip address
shutdown
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root
!
interface Vlan1
ip address 10.0.0.1 255.255.255.0
ip nat inside
ip virtual-reassembly
ip tcp adjust-mss 1412
!
interface Dialer1
ip address negotiated
ip mtu 1452
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
ppp authentication chap callin
ppp chap hostname
ppp chap password 0
!
ip route 0.0.0.0 0.0.0.0 Dialer1 permanent
!
ip http server
no ip http secure-server
ip nat inside source list 10 interface Dialer1 overload
!
access-list 10 permit 10.0.0.0 0.0.0.255
dialer-list 1 protocol ip permit
!
control-plane
!
!
line con 0
no modem enable
line aux 0
line vty 0 4
!
scheduler max-task-time 5000
end

__________________________________­ ______

Thanks heaps in advance guys I really appreciate any assistance I can get.

Josh
06:53pm 19/02/08 Permalink
system
Internet
--
06:53pm 19/02/08 Permalink
Jim
Brisbane, Queensland
7413 posts
http://telstra.com.au/internetdirect/cust_config.htm#adsl

to show your entire config: show run
06:58pm 19/02/08 Permalink
jmr
Brisbane, Queensland
5499 posts
So before doing this what do I do

write erase or something ???
07:00pm 19/02/08 Permalink
Jim
Brisbane, Queensland
7414 posts
you should really look at the cisco docs mate, they're all online on their website. if you're asking for even basic commands

you don't necessarily have to erase the entire config, you could just negate some of those current settings for now, if you wanted to keep it simple just to get it going
07:04pm 19/02/08 Permalink
Skitza
Brisbane, Queensland
8255 posts
Yeah if you don't know how to do the simple stuff, you are going to have trouble getting it working :)

Can I suggest doing a search for Cisco in the WP thread at the bottom of the page like this and looking at some older threads.
07:26pm 19/02/08 Permalink
gimpy
Brisbane, Queensland
1852 posts
i'll configure it for you

$80/hr + call out fee
07:42pm 19/02/08 Permalink
jmr
Brisbane, Queensland
5502 posts
How bout you do it remotely in half an hour
07:46pm 19/02/08 Permalink
Nailbomb
Melbourne, Victoria
2393 posts
Are you getting sync?

I'd probably change:
interface ATM0.1 point-to-point
no snmp trap link-status
pvc 8/35
pppoe-client dial-pool-number 1

to this for starters:

interface ATM0.1 point-to-point
pvc 8/35
encapsulation aal5mux ppp dialer
dialer pool-member 1

edit: with my Cisco 877 that encapsulation i mentioned above was not available and had to use:
encapsulation aal5nlpid

also, what Gimpy says below is also correct, i was debating whether you deliberately removed the username / password for the purposes of posting on a forum :)

there are also debug commands that help works out probs as well but best to leave those until last.


last edited by Nailbomb at 20:02:24 19/Feb/08
07:55pm 19/02/08 Permalink
gimpy
Brisbane, Queensland
1853 posts
hehe, I was only joking

OK, your config looks okay so no need to erase it

These lines are the problem:

ppp chap hostname
ppp chap password 0

You should have something like:

ppp chap hostname username@bigpond.net.au
ppp chap password 0 youractualpassword

As for copying stuff into routers, the beautiful part about IOS is that you just copy and paste it out of notepad or a text editor of your choice

To make the changes, try something like this

enable
conf t
interface Dialer1
ppp chap hostname username@bigpond.net.au
ppp chap password 0 youractualpassword
exit
exit
write mem
07:56pm 19/02/08 Permalink
gimpy
Brisbane, Queensland
1854 posts
Also, you might want to update those DNS servers

enable
conf t
ip dhcp pool local
no dns-server 203.2.75.132 198.142.0.51
dns-server insert_ISPs_nameservers
exit
exit
write mem
08:02pm 19/02/08 Permalink
system
Internet
--
08:02pm 19/02/08 Permalink
AusGamers Forums
Show: per page
1
This thread is archived and cannot be replied to.