Fix sending dns servers in dhcp response.
This commit is contained in:
parent
2fdb47e1a1
commit
85d9b4a569
@ -10,7 +10,7 @@
|
|||||||
# - network
|
# - network
|
||||||
# - sshd
|
# - sshd
|
||||||
# - base
|
# - base
|
||||||
# - firewall
|
- firewall
|
||||||
# - cpu
|
# - cpu
|
||||||
# - ntp
|
# - ntp
|
||||||
# - hosts
|
# - hosts
|
||||||
@ -30,7 +30,7 @@
|
|||||||
# - fuse
|
# - fuse
|
||||||
# - autofs
|
# - autofs
|
||||||
# - exfat
|
# - exfat
|
||||||
# - bhyve
|
- bhyve
|
||||||
# - media
|
# - media
|
||||||
# - kubernetes
|
# - kubernetes
|
||||||
# - google_cloud_sdk
|
# - google_cloud_sdk
|
||||||
|
@ -13,7 +13,7 @@ console="tmux"
|
|||||||
cpu=1
|
cpu=1
|
||||||
memory=1024M
|
memory=1024M
|
||||||
|
|
||||||
disk0_type="virtio-blk"
|
disk0_type="nvme"
|
||||||
disk0_name="disk0"
|
disk0_name="disk0"
|
||||||
disk0_dev="sparse-zvol"
|
disk0_dev="sparse-zvol"
|
||||||
virt_random="yes" # virtio-rnd
|
virt_random="yes" # virtio-rnd
|
||||||
|
@ -42,4 +42,4 @@ pass quick on $ext_if proto udp from any port $dhcp to any port $dhcp
|
|||||||
|
|
||||||
pass in on host_uplink0 proto udp from any to any port { 53 51820 }
|
pass in on host_uplink0 proto udp from any to any port { 53 51820 }
|
||||||
pass out on host_uplink0 proto tcp from any to any port 8081
|
pass out on host_uplink0 proto tcp from any to any port 8081
|
||||||
pass in on host_uplink1
|
pass on host_uplink1
|
||||||
|
@ -9,4 +9,5 @@ subnet 10.213.177.0 netmask 255.255.255.0 {
|
|||||||
range 10.213.177.10 10.213.177.250;
|
range 10.213.177.10 10.213.177.250;
|
||||||
option broadcast-address 10.213.177.255;
|
option broadcast-address 10.213.177.255;
|
||||||
option routers 10.213.177.1;
|
option routers 10.213.177.1;
|
||||||
|
option domain-name-servers 10.213.177.1;
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,9 @@
|
|||||||
#
|
#
|
||||||
# List installed packages
|
# List installed packages
|
||||||
# pkg query -e '%a = 0' '%o' | sort
|
# pkg query -e '%a = 0' '%o' | sort
|
||||||
|
#
|
||||||
|
# Consider setting the following in the poudriere vm-bhyve config:
|
||||||
|
# priority="20"
|
||||||
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
package:
|
package:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user