dictator88
ISP
This has been going on for a year. I will try to take another crack at this. I am trying to configure a cisco 3700 with a SIMPLE route. The interface0 has a static public IP and the interface1 needs to handle 4 PUBLIC class C's.
A dozen people who said they knew what they were doing tried helping me with this but something always didn't work right. The reason seems to be since I need a simple route to act as nothing more than a gateway for the 4 class C's. Everyone keeps wanting to add in NAT commands which breaks many things. The reason - Behind this "gateway" is a couple hundred broadband customers, and many servers. Including DNS servers, mail servers, web servers, etc. NOTHING can be blocked. Reverse dns must translate, pings, everything. For some reason, no-one seems to understand the difference between a (public WAN / Private LAN) and a (public WAN / PUBLIC LAN! ) Below is the config of the last person that tried. If anyone knows what I am talking about and knows what the simple config would be for this I would LOVE to see it.
!
version 12.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname mechwall
!
!
ip subnet-zero
ip cef
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 98.113.33.14 255.255.255.252
ip nat inside
no ip mroute-cache
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 98.113.36.1 255.255.252.0
no ip route-cache
no ip mroute-cache
speed auto
full-duplex
!
ip classless
ip http server
ip route 0.0.0.0 0.0.0.0 98.113.33.13
!
!
snmp-server community rack RO
snmp-server community public RO
snmp-server location Ashland
snmp-server contact xxxx
snmp-server enable traps tty
!
line con 0
line aux 0
line vty 0 4
Now, according to cisco, a "simple" gateway config should be something like this,
interface fastethernet0/0
ip address 98.113.33.14 255.255.255.252
interface fastethernet0/1
ip address 98.113.36.1 255.255.252.0
router rip
network 98.113.33.0
network 98.113.36.0
ip route 0.0.0.0 0.0.0.0 98.113.33.13
But it doesn't seem to work either ????????????
A dozen people who said they knew what they were doing tried helping me with this but something always didn't work right. The reason seems to be since I need a simple route to act as nothing more than a gateway for the 4 class C's. Everyone keeps wanting to add in NAT commands which breaks many things. The reason - Behind this "gateway" is a couple hundred broadband customers, and many servers. Including DNS servers, mail servers, web servers, etc. NOTHING can be blocked. Reverse dns must translate, pings, everything. For some reason, no-one seems to understand the difference between a (public WAN / Private LAN) and a (public WAN / PUBLIC LAN! ) Below is the config of the last person that tried. If anyone knows what I am talking about and knows what the simple config would be for this I would LOVE to see it.
!
version 12.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname mechwall
!
!
ip subnet-zero
ip cef
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 98.113.33.14 255.255.255.252
ip nat inside
no ip mroute-cache
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 98.113.36.1 255.255.252.0
no ip route-cache
no ip mroute-cache
speed auto
full-duplex
!
ip classless
ip http server
ip route 0.0.0.0 0.0.0.0 98.113.33.13
!
!
snmp-server community rack RO
snmp-server community public RO
snmp-server location Ashland
snmp-server contact xxxx
snmp-server enable traps tty
!
line con 0
line aux 0
line vty 0 4
Now, according to cisco, a "simple" gateway config should be something like this,
interface fastethernet0/0
ip address 98.113.33.14 255.255.255.252
interface fastethernet0/1
ip address 98.113.36.1 255.255.252.0
router rip
network 98.113.33.0
network 98.113.36.0
ip route 0.0.0.0 0.0.0.0 98.113.33.13
But it doesn't seem to work either ????????????