Hi,
I have rented a dedicated server which have FreeBSD 8.1. I'm having some troubles configuring my IPFW Rules.
Here is my actual ipfw rule script
I guess my machine is connected to their data center trough some ip address like this: 10.0.0.1
Is there anyway that I can see all the IP addresses connected to me?
I have rented a dedicated server which have FreeBSD 8.1. I'm having some troubles configuring my IPFW Rules.
Here is my actual ipfw rule script
Code:
IPF="ipfw -q add"
ipfw -q -f flush
#loopback
$IPF 10 allow all from any to any via lo0
$IPF 20 deny all from any to 127.0.0.0/8
$IPF 30 deny all from 127.0.0.0/8 to any
$IPF 40 deny tcp from any to any frag
# statefull
$IPF 50 check-state
$IPF 60 allow ip from any to any out keep-state
$IPF 70 allow all from any to me in limit src-addr 10
#Apache
$IPF 120 allow tcp from any to me 80
#PuTTy
$IPF 100 allow tcp from any to me 22
I guess my machine is connected to their data center trough some ip address like this: 10.0.0.1
Is there anyway that I can see all the IP addresses connected to me?