Skip to content

Commit

Permalink
Bugfix in example config
Browse files Browse the repository at this point in the history
Added missing **DNS** keyword in dhcp-option, removed **ping** from client config
  • Loading branch information
SloCompTech committed Jun 23, 2019
1 parent 803edb3 commit 6f3366c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### 1.0.6 - Bugfix

- Added missing `DNS` keyword to **dhcp-option** in example configs
- Removed `ping` from client config in examples, because `keepalive` is set on a server

### 1.0.5 - Bugfix, finish hook, persistent interface, no firewall ...

- Fixed bug when running hooks (#3)
Expand Down
1 change: 0 additions & 1 deletion root/defaults/example/config/basic_nat/client/client.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ cipher AES-256-GCM
# Additional settings
compress lzo
verb 3
ping 10 120

# Permissions
user nobody
Expand Down
4 changes: 2 additions & 2 deletions root/defaults/example/config/basic_nat/server/server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ topology subnet
server $NETWORK_ADDRESS 255.255.255.0

push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option $DNS1"
push "dhcp-option $DNS2"
push "dhcp-option DNS $DNS1"
push "dhcp-option DNS $DNS2"

ifconfig-pool-persist tmp/ipp.txt

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ cipher AES-256-GCM
# Additional settings
compress lzo
verb 3
ping 10 120

# Permissions
user nobody
Expand Down
4 changes: 2 additions & 2 deletions root/defaults/example/config/basic_nat_wlp/server/server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ topology subnet
server $NETWORK_ADDRESS 255.255.255.0

push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option $DNS1"
push "dhcp-option $DNS2"
push "dhcp-option DNS $DNS1"
push "dhcp-option DNS $DNS2"

ifconfig-pool-persist tmp/ipp.txt

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ cipher AES-256-GCM
# Additional settings
compress lzo
verb 3
ping 10 120

# Permissions
user nobody
Expand Down
4 changes: 2 additions & 2 deletions root/defaults/example/config/basic_routed/server/server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ topology subnet
server $NETWORK_ADDRESS 255.255.255.0

push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option $DNS1"
push "dhcp-option $DNS2"
push "dhcp-option DNS $DNS1"
push "dhcp-option DNS $DNS2"

ifconfig-pool-persist tmp/ipp.txt

Expand Down

0 comments on commit 6f3366c

Please sign in to comment.