Configuring a Cisco
Hi ,
I was thinking about this ( might be dangerous)
Just to answer your first questions here and go onto something else -- hopefully without second guessing "Leaky-Bucket" . Please pull me up if you think I am talking nonsense
IF you have the router set up connected with the console and a terminal program you should see the read out when the router boots up. As mentioned it will show your hardware configuration enumerating whatever WORKING hardware it sees. IT will also give you a listing of the IOS --version , memory and other stuff.
Can you log that and post it here.
When you get to that first section where you go through the "wizard" portion you can choose to say NO and then go straight to the IOS CLI. I assume that there are no passwords or user profiles set so you should be able to execute a show command. Use the " ? " to get a listing of commands. Cisco IOS is just basically a type -- almost subset of UNIX.
ie. show ? -- will show you all those commands you can use. This is dependent on whether you are in normal user mode or "enable" mode
(superuser)
show running-config will show you what is in RAM
show startup-config will show you what is in NVRAM
show diag ( if I have the command right ) will show you all your hardware
You should then get a listing of all the installed interfaces -- whether they are in an enable OR shutdown state they will still be listed.
Here you can see if your WIC is listed -- ie working -- and what sort of interface it is SERIAL , ISDN , ADSL , ETHERNET , FastEthernet , etc.
You can always do a Google search on whatever item you are not sure of. You can also do a search on the CISCO site. EVERYTHING is there. You just need to find it. ALL the hardware is there with lots of documentation.
DO a Google search for 1750 -- or whatever configuration -- Just need to do some sorting and sifting
TO come back to your original post and Leaky-Buckets config
------------
Configure the router so that:
- The WIC side goes into a broadband connection i.e. another router that has no NATting i.e. all ports forwarded out on the other side.
(Q) Where is the other router and what is it. What is it's configuration ?
- The router does DHCP, in a pool size of about 50 IP addresses.
(A) Far as I can see LB has this sorted
- It performs NAT for the PC's attached on the standard Ethernet port
(A) Again OK
- The router does not do port forwarding.
(A) OK
This is a pretty simple set of requirements as far as I can see.
(A) Everything is always "simple" once the puzzle is solved
==========
no ip dhcp conflict logging
ip dhcp pool mydhcppool
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 10.1.1.1
interface FastEthernet0
ip address 192.168.1.1 255.255.255.0
ip nat inside
interface Ethernet0
ip address 10.0.0.2 255.255.255.0
ip nat outside
ip route 0.0.0.0 0.0.0.0 10.0.0.1
ip nat inside source list 1 interface Ethernet0 overload
access-list 1 permit 192.168.1.0 0.0.0.255
==========
As far as I can make out here -- the route as indicated is a "static" route ie a stipulated next hop.
-- no need for any ROUTING protocols
HOW do your fifty ( I think that is the number you mentioned) workstations connect into this LAN ?
I am also not seeing any hint of a modified config on the "Gateway" Router -- the one that is actually doing the routing out onto the WAN. (Not necessary when connecting to the Internet via an ISP infrastructure as their routers are set up for this scenario -- but your description sounded different

)
-- dns-server 10.1.1.1 Using the "gateway" router as a DNS Server rather than a "real" DNS Server ( Have I got this right ? )
IF you want some security on this you are going to have to set up a proper ACL or RADIUS or something similar -- which I am sure your Cisco model will be capable of ( depending on the IOS version )
IF you want I will scratch around on the Cisco site and see if I can find an applicable example config. But we need to look at that POST dump of yours first.
MW