EXAMPLES
options NETGRAPH
device udbp
Add the udbp driver to the kernel.
kldload netgraph
kldload udbp
Load the netgraph(4) module and then the udbp driver.
ngctl mkpeer udbp0: iface data inet
ifconfig ng0 10.0.0.1 10.0.0.2
Create a new network interface node and connect its inet hook to the data hook of the udbp node. ifconfig(8) configures the resulting network interface ng0 with a local IP address of 10.0.0.1 and a remote IP address of 10.0.0.2. On the remote host, the two IP addresses should of course be reversed.
SEE ALSO
netgraph(4), ng_iface(4), ohci(4), uhci(4), usb(4), ngctl(8)
HISTORY
AUTHORS