Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VERY basic help needed (SOHO 91)

Status
Not open for further replies.

phoneguy2286

Vendor
Sep 20, 2002
136
0
0
US
I have a SOHO 91 that I wish to use for very very basic home use. I am not familiar with IOS at all, and this is my first attempt. I have successfully hosed the GUI interface, and have to do everything command line. I have been able to initiate DHCP, but still having a few problems.

I can't get the DNS to work properly, and it looks like every time I reload the router, the interfaces drop and don't come up. Does anyone have a very basic config, or can you look through my config and give me some pointers?

THANKS! If anyone needs PBX assistance, I can possibly return the favor.

show config
Using 641 out of 131072 bytes
!
version 12.3
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
!
no aaa new-model
ip subnet-zero
ip dhcp excluded-address 10.10.10.1
!
ip dhcp pool home
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server 10.10.10.1
lease 7
!
!
!
!
!
!
!
!
interface Ethernet0
ip address 10.10.10.1 255.255.255.0
!
interface Ethernet1
ip address dhcp
duplex auto
!
ip classless
ip http server
no ip http secure-server
ip dns server
!
!
line con 0
no modem enable
line aux 0
line vty 0 4
!
scheduler max-task-time 5000
!
end

Router#
 
What is interface ethernet 1 connected to? What is doing NAT? Also, post a sh ver...
router(config)#ip route 0.0.0.0 0.0.0.0 e1
router(config)#ip name-server x.x.x.x

Burt
 
Eth 1 is the WAN connection to a DSL modem.

there should be no NAT.
ip name server?

see... I really don't know what I am doing.

thanks!
 
can you explain ip name-server x.x.x.x

SH VER:

sh ver
Cisco Internetwork Operating System Software
IOS (tm) SOHO91 Software (SOHO91-K9OY6-M), Version 12.3(2)XC2, EARLY DEPLOYMENT RELEASE SOFTWARE (fc1)
Synched to technology version 12.3(1.6)T
Technical Support: Copyright (c) 1986-2004 by cisco Systems, Inc.
Compiled Thu 04-Mar-04 01:24 by ealyon
Image text-base: 0x800131E8, data-base: 0x80A40300

ROM: System Bootstrap, Version 12.2(11r)YV1, RELEASE SOFTWARE (fc1)
ROM: SOHO91 Software (SOHO91-K9OY6-M), Version 12.3(2)XC2, EARLY DEPLOYMENT RELEASE SOFTWARE (fc1)

Router uptime is 14 minutes
System returned to ROM by power-on
System image file is "flash:soho91-k9oy6-mz.123-2.XC2.bin"


This product contains cryptographic features and is subject to United
States and local country laws governing import, export, transfer and
use. Delivery of Cisco cryptographic products does not imply
third-party authority to import, export, distribute or use encryption.
Importers, exporters, distributors and users are responsible for
compliance with U.S. and local country laws. By using this product you
agree to comply with applicable laws and regulations. If you are unable
to comply with U.S. and local laws, return this product immediately.

A summary of U.S. laws governing Cisco cryptographic products may be found at:

If you require further assistance please contact us by sending email to
export@cisco.com.

CISCO SOHO91 (MPC857DSL) processor (revision 0x301) with 29492K/3276K bytes of memory.
Processor board ID FOC08472233 (193326538), with hardware revision 0000
CPU rev number 7
Bridging software.
2 Ethernet/IEEE 802.3 interface(s)
128K bytes of non-volatile configuration memory.
8192K bytes of processor board System flash (Read/Write)
2048K bytes of processor board Web flash (Read/Write)

Configuration register is 0x2142
 
first and formost.....


do the following


enable mode

config t mode


configuration-register 0x2102

ctrl z

wr mem


that will make your router actually load the running config for you, because right now you have it set to 0x2142, which is basically not loading the running configuration from your startup config.


Dallas, Texas
Telecommunications
CCNA, Net+
Working on MCSA, Convergence+, CCVP
 
thanks...getting closer...still no DNS...unable to ping outside the LAN.
 
Do you have the ISP's DNS ip addresses?

ip name-server x.x.x.x


(x's being ip address for your ISP's DNS address)

Dallas, Texas
Telecommunications
CCNA, Net+
Working on MCSA, Convergence+, CCVP
 
Curious though, why would you not want to do any NAT'ing?

Dallas, Texas
Telecommunications
CCNA, Net+
Working on MCSA, Convergence+, CCVP
 
I guess I can pull the ISP's DNS from the existing dlink router, or a connected PC.

Is there a way to make it populate automatically?

I guess I'm a little unclear on NAT.

The ISP is providing a DHCP ip address, and I have no reason to use NAT that I am aware of...

very very simple setup.

thanks for the help!
 
use the import all feature of the dhcp scope so that it will automaticaly assing the dns address from the isp.

You will need to do a nat in order to provide internet on the inside, unless you have a public ip for every computer.

dhcp fix:

ip dhcp pool home
import all
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
lease 7

Can you post your updated config?
 
I will post as soon as I get home.

Thanks!

I am trying to learn. Any "generic" NAT setup?

thanks again.

-Gene
 
If the dsl modem is not in bridge mode, then it is doing the natting, as well as pppoe/pppoa authentication and negotiation.

Burt
 
Below is just an example I found in the Ciscopedia;

The following example translates between inside hosts addressed from either the 192.168.1.0 or 192.168.2.0 networks to the globally unique 171.69.233.208/28 network:

ip nat pool net-208 171.69.233.208 171.69.233.223 prefix-length 28
ip nat inside source list 1 pool net-208
!
interface fastethernet 0/0
ip address 171.69.232.182 255.255.255.240
ip nat outside
!
interface fastethernet 0/1
ip address 192.168.1.94 255.255.255.0
ip nat inside
!
access-list 1 permit 192.168.1.0 0.0.0.255
access-list 1 permit 192.168.2.0 0.0.0.255


Dallas, Texas
Telecommunications
CCNA, Net+
Working on MCSA, Convergence+, CCVP
 
That example is a little, overcomplicated for his setup.
I would suggest this:


interface Ethernet0
ip address 10.10.10.1 255.255.255.0
ip nat inside
!
interface Ethernet1
ip address dhcp
ip nat outside
duplex auto
!

ip nat inside source list 1 interface Ethernet1 overload

access-list 1 permit 10.10.10.0 0.0.0.255


----------------------------------
Bill
 
That is ONLY if his modem is in bridge mode! The fact that he set a private IP on the outgoing interface tells me that his modem may be NATting!

Burt
 
and if the modem is NATting, do I still need to initiate the Ciscopedia example?

 
No. But if it is not, let us know. The easiest way to tell is interface Ethernet1
ip address dhcp
ip nat outside
duplex half

That way you can see what IP address the modem assigns, by
sh int e1
and we'll go from there.

Burt
 
Burtsbees:

Ethernet1 is the outside interface in this example, it is set to dhcp, which does not have a private ip. (I have not seen it set to any private ip's)

Ethernet0 is internal, Ethernet1 is WAN. It is a little backwards to how most set it up, and threw me for a loop also.

Then again, once he lets us know the IP he gets assigned via dhcp, my point is moot :D

----------------------------------
Bill
 
and as I re-read all the posts, I read dlink router.. So maybe it will be an internal ip. (then again, if its a different class/range we can do 2 nats. lol)

----------------------------------
Bill
 
The dlink is not in the picture.. I just used it for a reference, and use it to get online while working on this little thing.

The modem is a Zytel DSL modem..shows to be using NAT (SUA Only)

assigns DHCP via the LAN interface..

also, I can plug the PC directly into the modem, and it pops right up.

I'm making progress. thanks.

The following is what I tinkered with last evening and how the router is currently configured.. I had to make some changes to the dhcp pool and created two other pools when doing so... how can I remove them from the config?

sh ver
Cisco Internetwork Operating System Software
IOS (tm) SOHO91 Software (SOHO91-K9OY6-M), Version 12.3(2)XC2, EARLY DEPLOYMENT RELEASE SOFTWARE (fc1)
Synched to technology version 12.3(1.6)T
Technical Support: Copyright (c) 1986-2004 by cisco Systems, Inc.
Compiled Thu 04-Mar-04 01:24 by ealyon
Image text-base: 0x800131E8, data-base: 0x80A40300

ROM: System Bootstrap, Version 12.2(11r)YV1, RELEASE SOFTWARE (fc1)
ROM: SOHO91 Software (SOHO91-K9OY6-M), Version 12.3(2)XC2, EARLY DEPLOYMENT RELEASE SOFTWARE (fc1)

Router uptime is 8 hours, 8 minutes
System returned to ROM by reload
System image file is "flash:soho91-k9oy6-mz.123-2.XC2.bin"


This product contains cryptographic features and is subject to United
States and local country laws governing import, export, transfer and
use. Delivery of Cisco cryptographic products does not imply
third-party authority to import, export, distribute or use encryption.
Importers, exporters, distributors and users are responsible for
compliance with U.S. and local country laws. By using this product you
agree to comply with applicable laws and regulations. If you are unable
to comply with U.S. and local laws, return this product immediately.

A summary of U.S. laws governing Cisco cryptographic products may be found at:

If you require further assistance please contact us by sending email to
export@cisco.com.

CISCO SOHO91 (MPC857DSL) processor (revision 0x301) with 29492K/3276K bytes of memory.
Processor board ID FOC08472233 (193326538), with hardware revision 0000
CPU rev number 7
Bridging software.
2 Ethernet/IEEE 802.3 interface(s)
128K bytes of non-volatile configuration memory.
8192K bytes of processor board System flash (Read/Write)
2048K bytes of processor board Web flash (Read/Write)

Configuration register is 0x2102

Router#

sh int
Ethernet0 is up, line protocol is up
Hardware is PQUICC Ethernet, address is 0012.8031.5ffe (bia 0012.8031.5ffe)
Internet address is 10.10.10.1/24
MTU 1500 bytes, BW 10000 Kbit, DLY 1000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 10Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:00:03, output 00:00:00, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
261 packets input, 32579 bytes, 0 no buffer
Received 151 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
3480 packets output, 393371 bytes, 0 underruns
0 output errors, 0 collisions, 1 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
Ethernet1 is up, line protocol is up
Hardware is PQUICC_FEC, address is 0012.8031.5fff (bia 0012.8031.5fff)
Internet address is 192.168.2.4/24
MTU 1500 bytes, BW 10000 Kbit, DLY 1000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 10Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:04:30, output 00:00:00, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 1000 bits/sec, 1 packets/sec
10 packets input, 1786 bytes, 0 no buffer
Received 3 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
3069 packets output, 190659 bytes, 0 underruns
0 output errors, 0 collisions, 1 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
Router#

sh config
Using 686 out of 131072 bytes
!
version 12.3
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
!
no aaa new-model
ip subnet-zero
ip dhcp excluded-address 10.10.10.1
!
ip dhcp pool hh
!
ip dhcp pool home1
import all
!
ip dhcp pool home
import all
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
lease 7
!
!
!
!
!
!
!
!
!
interface Ethernet0
ip address 10.10.10.1 255.255.255.0
!
interface Ethernet1
ip address dhcp
duplex auto
!
ip classless
ip http server
ip http secure-server
ip dns server
!
!
line con 0
no modem enable
line aux 0
line vty 0 4
login
!
scheduler max-task-time 5000
!
end

Router#
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top