From: Florian Obser Subject: replace bridge(4) with veb(4) in faq16 To: Solène Rapenne Cc: tech Date: Thu, 11 Jul 2024 15:18:51 +0200 Hi, I understand bridge(4) can do weird things with network traffic. For example, I couldn't get dhcpd(8) to work with the "Option 3" setup from the faq. On the other hand, after switching everything to veb/vport dhcpd(8) just works™. Since we don't need anything fancy for the simple vmm networking of "Option 3" in the faq I think it's best to point people at veb(4) instead of bridge(4). OK? Index: faq16.html =================================================================== RCS file: /cvs.d/reposync/www/faq/faq16.html,v diff -u -p -r1.24 faq16.html --- faq16.html 3 Apr 2024 19:59:04 -0000 1.24 +++ faq16.html 11 Jul 2024 13:10:10 -0000 @@ -229,25 +229,31 @@ Reload the pf ruleset and the VM(s) can Sometimes you may want additional control over the virtual network for your VMs, such as being able to put certain ones on their own virtual switch. -This can be done using a bridge(4) -and a vether(4) interface. +This can be done using a veb(4) +and a vport(4) interface.

-Create a vether0 interface that will have a private IPv4 address +Create a vport0 interface that will have a private IPv4 address as defined above. In this example, we'll use the 10.0.0.0/8 subnet.

-# echo 'inet 10.0.0.1 255.255.255.0' > /etc/hostname.vether0
-# sh /etc/netstart vether0
+# cat <<END > /etc/hostname.vport0
+inet 10.0.0.1 255.255.255.0
+up
+END
+# sh /etc/netstart vport0
 
-Create the bridge0 interface with the vether0 -interface as a bridge port: +Create the veb0 interface with the vport0 +interface as a child interface:
-# echo 'add vether0' > /etc/hostname.bridge0
-# sh /etc/netstart bridge0
+# cat <<END > /etc/hostname.veb0
+add vport0
+up
+END
+# sh /etc/netstart veb0
 
Ensure that NAT is set up properly if the guests on the virtual network @@ -255,7 +261,7 @@ need access beyond the physical machine. An adjusted NAT line in /etc/pf.conf might look like this:
-match out on egress from vether0:network to any nat-to (egress)
+match out on egress from vport0:network to any nat-to (egress)
 
The following lines in vm.conf(5) @@ -263,7 +269,7 @@ can be used to ensure that a virtual swi
 switch "my_switch" {
-    interface bridge0
+    interface veb0
 }
 
 vm "my_vm" {

-- 
In my defence, I have been left unsupervised.