Skip to content

Commit 6f3366c

Browse files
committed
Bugfix in example config
Added missing **DNS** keyword in dhcp-option, removed **ping** from client config
1 parent 803edb3 commit 6f3366c

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### 1.0.6 - Bugfix
4+
5+
- Added missing `DNS` keyword to **dhcp-option** in example configs
6+
- Removed `ping` from client config in examples, because `keepalive` is set on a server
7+
38
### 1.0.5 - Bugfix, finish hook, persistent interface, no firewall ...
49

510
- Fixed bug when running hooks (#3)

root/defaults/example/config/basic_nat/client/client.conf

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ cipher AES-256-GCM
2727
# Additional settings
2828
compress lzo
2929
verb 3
30-
ping 10 120
3130

3231
# Permissions
3332
user nobody

root/defaults/example/config/basic_nat/server/server.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ topology subnet
1414
server $NETWORK_ADDRESS 255.255.255.0
1515

1616
push "redirect-gateway def1 bypass-dhcp"
17-
push "dhcp-option $DNS1"
18-
push "dhcp-option $DNS2"
17+
push "dhcp-option DNS $DNS1"
18+
push "dhcp-option DNS $DNS2"
1919

2020
ifconfig-pool-persist tmp/ipp.txt
2121

root/defaults/example/config/basic_nat_wlp/client/client.conf

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ cipher AES-256-GCM
2727
# Additional settings
2828
compress lzo
2929
verb 3
30-
ping 10 120
3130

3231
# Permissions
3332
user nobody

root/defaults/example/config/basic_nat_wlp/server/server.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ topology subnet
1414
server $NETWORK_ADDRESS 255.255.255.0
1515

1616
push "redirect-gateway def1 bypass-dhcp"
17-
push "dhcp-option $DNS1"
18-
push "dhcp-option $DNS2"
17+
push "dhcp-option DNS $DNS1"
18+
push "dhcp-option DNS $DNS2"
1919

2020
ifconfig-pool-persist tmp/ipp.txt
2121

root/defaults/example/config/basic_routed/client/client.conf

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ cipher AES-256-GCM
2727
# Additional settings
2828
compress lzo
2929
verb 3
30-
ping 10 120
3130

3231
# Permissions
3332
user nobody

root/defaults/example/config/basic_routed/server/server.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ topology subnet
1414
server $NETWORK_ADDRESS 255.255.255.0
1515

1616
push "redirect-gateway def1 bypass-dhcp"
17-
push "dhcp-option $DNS1"
18-
push "dhcp-option $DNS2"
17+
push "dhcp-option DNS $DNS1"
18+
push "dhcp-option DNS $DNS2"
1919

2020
ifconfig-pool-persist tmp/ipp.txt
2121

0 commit comments

Comments
 (0)