View Single Post
  #3   (View Single Post)  
Old 11th November 2014
Oko's Avatar
Oko Oko is offline
Rc.conf Instructor
 
Join Date: May 2008
Location: Kosovo, Serbia
Posts: 1,102
Default

Quote:
Originally Posted by J65nko View Post
It all works rather well. The only thing I haven't figured out is how to configure the network part in such a way that I can use an external box login over SSH to for example the FreeBSD 9.3 image.
And that is the only non-trivial part This is how you configure bridge mode on Red Hat.

Code:
[root@/etc/sysconfig/network-scripts]# more ifcfg-eth0
DEVICE=eth0
TYPE="Ethernet"
ONBOOT="yes"
NM_CONTROLLED="no"
BRIDGE=br0
Code:
[root@/etc/sysconfig/network-scripts]# more ifcfg-br0
DEVICE=br0
TYPE=Bridge
BOOTPROTO="static"
ONBOOT="yes"
IPADDR=192.168.6.80
NETMASK=255.255.255.0
DELAY=0
Code:
more /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=oko.mydomain.org
GATEWAY=192.168.6.254
then restart the network
Reply With Quote