how to configure 2 Network Interfaces..One for Internet and Second for FOG Server..?
-
Dear Sir,
As per My Experiences in Ubuntu Linux OS, I have done IP Addresses Configuration Statically both Network Interfaces as Per Our Organization is.
Below IP Addresses are Configured Like this…
This eth0 is for Our Organization to access Internet and Local Sharing Extra Extra… (Static)
auto eth0
iface eth0 inet static
address 10.12.2.XX
netmask 255.255.254.0
network 10.12.2.0
broadcast 10.12.2.255
gateway 10.12.2.XX
dns-nameservers 10.10.1.XX 8.8.8.8This eth1 is for FOG SERVER (Static)
auto eth1
iface eth1 inet static
address 192.168.147.XXX
netmask 255.255.255.0
network 192.168.147.0
broadcast 192.168.147.255
gateway 192.168.147.1Above eth1 IP Static Address is enough for Fog Server ?
Is it OK Sir For Making FOG Server in Ubuntu 16.04 Machine?
It is My Humble Request to Every One to do Help in This Regard… Because… in this Section, Little bit Confusion is there… Whether I put IP Addresses correct Format OR standardized Way ?
Heartily Thank You One and All…
Basavaraj From India
-
Just to be clear, you want to create a dedicated imaging network on the 192.168.147.x subnet? If so, and you have a dedicated imaging network (isolated) remove the gateway setting from this subnet. The fog server does not need to know this and will cause you some problems.
Make sure you have the ubuntu server has the static ip addresses set before you install FOG. FOG is not tolerant of its IP addresses changing after fog is installed.
When you install FOG, the fog installer will ask you which interface to use, in your case you need to answer eth1 since that interface has been defined for your imaging network. Remember FOG will only image on the interface you define during installation. You will be able to access the management gui via all interface, but only image from the defined one.
-
@Basavarajnc said in how to configure 2 Network Interfaces..One for Internet and Second for FOG Server..?:
This eth1 is for FOG SERVER (Static)
auto eth1
iface eth1 inet static
address 192.168.147.XXX
netmask 255.255.255.0
network 192.168.147.0
broadcast 192.168.147.255The above thing is enough configuration of eth1 to make Fog Server Successful?
is it OK Sir OR need to do any extra Configurations over here ?
Heartily Thank you for kind Reply
Basavaraj From India.