Here is the basics of the config:
PIX Version 6.1(4)
nameif ethernet0 outside security0
nameif ethernet1 inside security100
fixup protocol ftp 21
fixup protocol http 80
fixup protocol h323 1720
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol sip 5060
fixup protocol skinny 2000
access-list outside_in permit tcp any host 192.168.x.10 eq domain
access-list outside_in permit udp any host 192.168.x.10 eq domain
access-list outside_in permit tcp any host 192.168.x.10 eq www
access-list outside_in permit tcp any host 192.168.x.10 eq smtp
access-group outside_in in interface outside
route outside 0.0.0.0 0.0.0.0 216.x.x.1 1
global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
alias (outside) 216.x.x.2 216.x.x.2 255.255.255.255
ip address outside 216.x.x.2 255.255.255.224
ip address inside 192.168.x.1 255.255.255.0
Alias is something I was trying to utilize so that all communications can go in and out therough the only IP adress on the outside interface. I am not sure if I have that down.
If I add what I believe to be a necessary static route, all browsing, etc to the internet ceases.
Ex.
static (inside,outside) 216.x.x.2 192.168.x.10 netmask 255.255.255.255 0 0
What am I missing or what do I have with the incorrect syntax?
Thanks in advance.
PIX Version 6.1(4)
nameif ethernet0 outside security0
nameif ethernet1 inside security100
fixup protocol ftp 21
fixup protocol http 80
fixup protocol h323 1720
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol sip 5060
fixup protocol skinny 2000
access-list outside_in permit tcp any host 192.168.x.10 eq domain
access-list outside_in permit udp any host 192.168.x.10 eq domain
access-list outside_in permit tcp any host 192.168.x.10 eq www
access-list outside_in permit tcp any host 192.168.x.10 eq smtp
access-group outside_in in interface outside
route outside 0.0.0.0 0.0.0.0 216.x.x.1 1
global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
alias (outside) 216.x.x.2 216.x.x.2 255.255.255.255
ip address outside 216.x.x.2 255.255.255.224
ip address inside 192.168.x.1 255.255.255.0
Alias is something I was trying to utilize so that all communications can go in and out therough the only IP adress on the outside interface. I am not sure if I have that down.
If I add what I believe to be a necessary static route, all browsing, etc to the internet ceases.
Ex.
static (inside,outside) 216.x.x.2 192.168.x.10 netmask 255.255.255.255 0 0
What am I missing or what do I have with the incorrect syntax?
Thanks in advance.