Freebsd networking: Difference between revisions

From wikinotes
No edit summary
Line 1: Line 1:
{{ TODO |
this page is horrible. learn, and clean. }}
= Documentation =
= Documentation =
<blockquote>
<blockquote>

Revision as of 03:28, 7 August 2021

TODO:

this page is horrible. learn, and clean.

Documentation

freebsd handbook: network communication https://docs.freebsd.org/en/books/handbook/partiv/

Tools

FreeBSD ifconfig

Usage

Manual Connection

# Starting a manual network connection from CLI
sudo route add default 192.168.1.1 # Set path to your router
ifconfig                           # find interface you want
ifconfig em0 up                    # set interface 'up'
dhclient em0                       # (equivalent of DHCPCD, requests IP address)

Examples

Static IP

# /etc/rc.conf
ifconfig_nfe0="inet 192.168.1.220 netmask 255.255.255.0"
defaultrouter="192.168.1.1"
# If you still are not able to get outside the internal
# network, try deleting and re-adding the default router from CLI
route delete default
route add default 192.168.1.1  

# The following should restart your internet connection.
ifconfig em0 inet 192.168.0.254 netmask 255.255.255.0