I am familiar with routers, but have not done much with Cisco. I am trying to accomplish the following, but am not sure of the syntax:
Setting: My network is using the 172.23.0.0 network. I have a Cisco CISCO1941 router between my network and a foreign network (10.1.0.0). I have set up NAT on the Cisco router to the 10.1.0.0 addresses are presented to my network as 192.168.101.0.
Goals: I want a computer on my network to talk to a computer on the foreign network. I also want to be able to logon to the router from a workstation on our network.
Layout:
Computer on my network 172.23.1.66 \_______/172.23.82.2 Cisco \_______continued..
my management workstation 172.23.7.87 / \ Router/
_______/Cisco 10.1.0.2\/192.168.101.24 nat\________/workstation \Router /\ to 10.1.40.24 / \10.1.80.24 /
I have the following code:
interface GigabitEthernet0/0
ip address 172.23.82.2 255.255.255.0
ip nat outside
ip virtual-reassembly in
duplex half
speed 10
no mop enabled
!
interface GigabitEthernet0/1
ip address 10.1.40.1 255.255.0.0
ip access-group 102 out
ip nat inside
ip virtual-reassembly in
duplex auto
speed auto
:
ip nat inside source static 10.1.80.24 192.168.101.200
:
ip route 172.23.0.1 255.255.255.255 172.23.82.1
:
access-list 101 permit ip host 10.1.80.24 host 172.23.1.66
access-list 102 permit ip host 172.23.1.66 host 10.1.80.24
access-list 102 permit ip host 172.23.7.87 host 172.23.82.2
Neither goal is working. Any ideas would be welcome.
Dan
Setting: My network is using the 172.23.0.0 network. I have a Cisco CISCO1941 router between my network and a foreign network (10.1.0.0). I have set up NAT on the Cisco router to the 10.1.0.0 addresses are presented to my network as 192.168.101.0.
Goals: I want a computer on my network to talk to a computer on the foreign network. I also want to be able to logon to the router from a workstation on our network.
Layout:
Computer on my network 172.23.1.66 \_______/172.23.82.2 Cisco \_______continued..
my management workstation 172.23.7.87 / \ Router/
_______/Cisco 10.1.0.2\/192.168.101.24 nat\________/workstation \Router /\ to 10.1.40.24 / \10.1.80.24 /
I have the following code:
interface GigabitEthernet0/0
ip address 172.23.82.2 255.255.255.0
ip nat outside
ip virtual-reassembly in
duplex half
speed 10
no mop enabled
!
interface GigabitEthernet0/1
ip address 10.1.40.1 255.255.0.0
ip access-group 102 out
ip nat inside
ip virtual-reassembly in
duplex auto
speed auto
:
ip nat inside source static 10.1.80.24 192.168.101.200
:
ip route 172.23.0.1 255.255.255.255 172.23.82.1
:
access-list 101 permit ip host 10.1.80.24 host 172.23.1.66
access-list 102 permit ip host 172.23.1.66 host 10.1.80.24
access-list 102 permit ip host 172.23.7.87 host 172.23.82.2
Neither goal is working. Any ideas would be welcome.
Dan