-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnat_wiring.json
40 lines (38 loc) · 887 Bytes
/
nat_wiring.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"handlers": [
{
"class_name": "NAT",
"args": {
"my_address" : "10.0.0.3",
"next_outside_hop_mac" : "00:00:00:00:00:09",
"tcp_inactivity_timeout": "00:05:00",
"tcp_time_wait_duration": "00:04:00",
"tcp_start_port" : "1025",
"tcp_end_port" : "65535",
"udp_inactivity_timeout": "00:00:30",
"udp_start_port" : "1025",
"udp_end_port" : "65535"
}
}
],
"interfaces": [
{
"interface_name" : "nat0-eth0",
"lead_handler" : "NAT",
"pcap_filter" : "tcp or udp",
"environment" : {
"outside_port": "true"
}
},
{
"interface_name" : "nat0-eth1",
"lead_handler" : "NAT",
"pcap_filter" : "tcp or udp"
},
{
"interface_name" : "nat0-eth2",
"lead_handler" : "NAT",
"pcap_filter" : "tcp or udp"
}
]
}