- Первую карту подключаем мостом в VBox - До GNS 0.8.7 в FreeBSD драйвер сетевой карты PCnet-PCI II - В GNS 0.8.7 назначать 3 сетевых адаптера с резервированием первой для VirtualBox
# cat /etc/hosts
127.0.0.1 localhost 192.168.X.10 server.corpX.un server 10.5.11.254 proxy
# cat /etc/resolv.conf
search corpX.un nameserver 172.16.1.254
root@localhost:~# cat /etc/hostname
server.corpX.un
root@localhost:~# cat /etc/network/interfaces
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 10.5.11.100+X netmask 255.255.255.0 auto eth1 iface eth1 inet static address 192.168.X.10 netmask 255.255.255.0 gateway 192.168.X.1 auto eth2 iface eth2 inet manual up ip link set eth2 up
# cat .bashrc
... export http_proxy=http://proxy:3128/ ...
root@localhost:~# init 6 ... root@server:~# apt update
# cat /etc/rc.conf
hostname="server.corpX.un" ifconfig_em0="10.5.11.100+X/24" ifconfig_em1="192.168.X.10/24" ifconfig_em2="up" defaultrouter="192.168.X.1" keyrate="fast" sshd_enable=yes
#cat .cshrc
... setenv HTTP_PROXY http://proxy:3128 ...
# init 6 ... # pkg update -f
Добавить в репозиторий обновления!!!
# cat /etc/apt/sources.list
deb http://ru.archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse deb http://ru.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse deb http://security.ubuntu.com/ubuntu xenial-security main restricted universe multiverse
# apt update