![]() |
|
|||
|
Hello Community,
i am a newbie with BSD and i try to understand how a system at work is running. I have a "OpenBSD 4.5 GENERIC#1749 i386" to work. This host is running as a firewall with 4 ethernet ports. Now i have to realise a NAT between 2 networks: mgt_if and extra_if Code:
#macros:
mgt_if="10.1.0.254"
extra_if="192.168.50.254"
#host on extra_if
host1="192.168.50.100"
#pool auf clients on mgt_if
table <client> const {10.1.0.11, 10.1.0.12, 10.1.0.21, 10.1.0.31}
only "host1" can do it with the clients defined in the "<client>" table, realising ssh, vnc, snmtp (monitoring) i try a lot of nat settings, but it´s not working: Code:
nat on $mgt_if from $host1 to any -> ($mgt_if:0)
nat on $mgt_if from ($extra_if:0:network) to any -> ($mgt_if:0)
nat on $mgt_if inet from $host1 to any -> ($mgt_if:0)
nat on $mgt_if inet from ($extra_if:0:network) to any -> ($mgt_if:0)
nat on $mgt_if inet proto { tcp, udp } from $host to any -> ($mgt_if:0)
nat on $mgt_if inet proto { tcp, udp } from ($extra_if:0:network) to any -> ($mgt_if:0)
thanks in advance Laurent |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Where should I put my config? "rc.conf" or "rc.conf.local"? | fender0107401 | OpenBSD General | 2 | 2nd April 2012 02:53 AM |
| Help with pf.conf | A_Sorenby | OpenBSD Security | 14 | 21st June 2011 09:52 PM |
| Pf.conf | erict35 | OpenBSD Security | 1 | 30th January 2010 09:19 PM |
| pf.conf | lumiwa | FreeBSD Security | 11 | 20th September 2008 01:01 AM |
| difference between rc.conf and loader.conf | disappearedng | FreeBSD General | 5 | 3rd September 2008 05:54 AM |