Hi All,
I trying to write what I thought was a simple ACL but its all going very wrong in my head.
I have a router with a ATM interface providing internet connection ( static ip x.x.x.x ) to a network of int fa 0/0.
( 192.168.0.0)
I have a remoting software located on a external network address y.y.y.y trying to connect to a server on the internal network 192.168.0.1
Was a little unsure of the ACL either ....
config t
ip access-list extended 102
permit ip host y.y.y.y host x.x.x.x
OR
config t
ip access-list extended 102
permit ip host y.y.y.y host 192.168.0.1
int fa 0/0
ip access-group 102 in
But both do not allow the connection from y.y.y.y to the server 192.168.0.1 ???
Ran a couple of logging commands and after a little playing got it to connect using the following ACL
config t
ip access-list extended 102
permit ip host 192.168.0.1 host y.y.y.y
int fa 0/0
ip access-group 102 in
Sorry just not getting this.
The above ACL is telling the router to accept any ip packets FROM 192.168.0.1 to y.y.y.y. But I am making my remote connection FROM y.y.y.y and applying the ACL to Int fa 0/0 inbound.
Hope this makes sense and that someone can help me understand it.
Many Thanks
I trying to write what I thought was a simple ACL but its all going very wrong in my head.
I have a router with a ATM interface providing internet connection ( static ip x.x.x.x ) to a network of int fa 0/0.
( 192.168.0.0)
I have a remoting software located on a external network address y.y.y.y trying to connect to a server on the internal network 192.168.0.1
Was a little unsure of the ACL either ....
config t
ip access-list extended 102
permit ip host y.y.y.y host x.x.x.x
OR
config t
ip access-list extended 102
permit ip host y.y.y.y host 192.168.0.1
int fa 0/0
ip access-group 102 in
But both do not allow the connection from y.y.y.y to the server 192.168.0.1 ???
Ran a couple of logging commands and after a little playing got it to connect using the following ACL
config t
ip access-list extended 102
permit ip host 192.168.0.1 host y.y.y.y
int fa 0/0
ip access-group 102 in
Sorry just not getting this.
The above ACL is telling the router to accept any ip packets FROM 192.168.0.1 to y.y.y.y. But I am making my remote connection FROM y.y.y.y and applying the ACL to Int fa 0/0 inbound.
Hope this makes sense and that someone can help me understand it.
Many Thanks