What settings are you looking for?more advanced network features via the command line
Do you have a DHCP server?Basic IP address, mask, router, for each interface. But also additional connections for each interface. This is ultimately going to be a server with two ethernet ports with two physical connections, each one being used a little differently than the other.
ifconfig show?You can set up a dhcp server to serve IP address based on MAC address in which case you only need to specifyWell I DO have a dhcp server but I will be setting up a static LAN IP temporarily and then some static public IPs on the final, real server.
Basic command;ifconfig <interface> inet <ip address> netmask <subnet mask>, for example;ifconfig em0 inet 1.2.3.4 netmask 255.255.255.0
Or, in rc.conf:
Code:ifconfig_em0="inet 1.2.3.4 netmask 255.255.255.0"
Yep, that's basically what is going to happen, but in the end it's not a bad thing because it helps a bit to understand what you do.I have a feeling I'll be learning how to setup more advanced network features via the command line :/
Additionally to what SirDice said you'll likely find lot of information in the handbook, there is a network section with examples and explanations:Basic IP address, mask, router, for each interface. But also additional connections for each interface. This is ultimately going to be a server with two ethernet ports with two physical connections, each one being used a little differently than the other.
ifconfig_re0_alias0="192.168.1.5 netmask 255.255.255.255"
route add default 1.2.3.4defaultrouter="1.2.3.4" route add -net 10.0.0.0/8 192.168.10.1static_routes="myroute"
route_myroute="-net 10.0.0.0/8 192.168.10.1"
nameserver 1.1.1.1
nameserver 8.8.8.8
nameserver and can have a maximum of 3 nameserver entries. Each will be queried in the order they appear. The second (or third) will only be queried when a request to the first timed out. domain or search so resolving "short" names works as expected.Works very well. With wifi and all. It is the GUI network manager in GhostBSD after all.
No need to add to startup application, it must be inserted in the panel (panel plugin). Click on it to display a menu for enable/disable network card(s) and configure them.Works very well. With wifi and all. It is the GUI network manager in GhostBSD after all.
But...you need to add it to STARTUP applications in XFCE (SEESION MANAGER?) manually.
And the user thus needs to be in Operator group (I think).