|
Question : Cisco 827 router with ADSL connection setup and a Dynamic IP (Magma in Canada with DynDNS)
|
|
Hi,
I have a Magma account (Canadian DSL ISP) using a dynamic IP and currently using DynDNS. The current setup is a Speedstream 5660 in bridge mode going into a Linksys WRV54G router, everything is working great with the router handling the PPPOE and Dyndns connection. I would like to replace the Speedstream with the Cisco 827. I have the Cisco hooked up with a rollover console with 12.1 loaded , I cannot figure out how to get the mysterious 10.10.10.1 interface up via the ethernet connection. Can some one please walk me through getting this thing talking to the outside world. Once I get it up I'll get a book and learn it properly but I need a push in the right direction. I definitely figure this is worth 500 for a quality answer as the cisco pages are really good at giving reams and reams of commands and they don't even tell you how to get the non-console interface up.
Thank you for any help
|
Answer : Cisco 827 router with ADSL connection setup and a Dynamic IP (Magma in Canada with DynDNS)
|
|
Top Ten Cisco IOS Tips: Commands http://www.oreillynet.com/pub/a/network/2002/01/02/ciscotips.html
Cisco IOS In a Nutshell: http://press.oreilly.com/pub/pr/570 http://www.oreilly.com/catalog/cisiosnut/chapter/refI.html
Any books by Todd Lammie: http://www.lammle.com/ -------------------------- ------------------------- Here is what you should see when starting the router named Router: [Follow the steps & press enter after each IOS command line input]
--- System Configuration Dialog --- One
Step 5 Enter no in response to the prompts until the following message is displayed: Press RETURN to get started!
Step 6 Press Return. The following prompt appears:
Router>
Step 7 Enter the enable command to enter enable mode. Configuration changes can be made only in
Router> enable
The prompt changes to the privileged EXEC prompt:
Router#
Step 8 Enter the show startup-config command to display an enable password in the configuration
Router# show startup-config
*Setting/Reseting the Password and Saving Your Changes This section discusses how to reset your password and save the changes.
Step 1 Enter the configure terminal command to enter configuration mode:
Router# configure terminal
Step 2 Enter the enable secret command to reset the enable secret password in the router:
Router(config)# enable secret password
Step 3 Enter exit to exit configuration mode:
Router(config)# exit
Step 4 Save your configuration changes:
Router# copy running-config startup-config
---------------------Initial setup Router# configure terminal Router(config) # Router(config)#interface ethernet 0 Router(config - if) # Router(config - if)#ip address 192.168.1.1 255.255.255.0 Router(config - if)#no shutdown Router(config - if)#exit Router(config) #exit Router#copy running-config startup-config Router# -------------------------- --------------------- interface Ethernet0 ip address 192.168.100.254 255.255.255.0 ip nat inside
*A simple DHCP set-up.
ip dhcp pool DHCP network 192.168.100.0 255.255.255.0 dns-server 195.64.68.28 195.64.65.25 default-router 192.168.100.254 lease 0 0 15
This DNS set-up enables the assignment of the IP range 192.168.100.0 (with a netmask of 255.255.255.0). Some options like the assignment of the DNS servers of the ISP You can extract while you get your ip address assigned from the ISP.
*To see this info:
use the 'debug dhcp detail' while you are enabled on the console of the router. type 'conf t' type 'interface bvi 1' type 'shutdown' to shut the interface and type 'no shutdown' to enable the interface again.
http://www.xs4all.nl/~hermanb/using_the_cisco_827.html ------------------ hostname R1 ! ip subnet-zero no ip routing ! interface Ethernet0 ip address 10.0.0.1 255.0.0.0
!--- When the router is in bridge mode, the Ethernet !--- and ATM interfaces can have the same IP address.
no ip directed-broadcast bridge-group 1
http://www.cisco.com/warp/public/794/827rfc_6400rbe_1.html ------------------------------ This should get you up & runing or at least to the next step. Let me know.
|
|
|