Author Topic: Fixed IP  (Read 2809 times)

brononius

  • Guru
  • ****
  • Posts: 454
  • Trying to keep it simple and centralized...
    • View Profile
    • OnIrIa - linuxMCE blog
Fixed IP
« on: July 21, 2011, 10:51:18 am »
Hey,

All my network devices use dhcp.

Nice because this way i can change whatever i want (reason of dhcp).
Not nice because i don't find the option in linuxmce to assign fix ip's.

Several things in my network must be know by their ip to interconnect internally (fe printers, workstations with shares, IP-router of KNX...)
I found out that i can add fixed ip's in /etc/dhcp3/dhcpd-extra.conf, and it works (yeahhh).

more dhcpd-extra.conf
Code: [Select]
host hostname.mydomain.net {
  hardware ethernet 00:11:22:33:44:55;
  fixed-address 192.168.111.2;
}

And then a restart of the dhcp server
Code: [Select]
/etc/init.d/dhcp3-server restart


Works great, but now my question, is this the way to do it? Or will some things not work as supposed?


Version: linuxMCE 1404, running virtual on ESXi

Orbiters: ASUS eeePAD, Nexus 5, Huwai, web
Automation: EIB technology, KNX IP ROUTER 750
Phones: Cisco 7912-7940-7960
Camera's: Foscam POE

Marie.O

  • Administrator
  • LinuxMCE God
  • *****
  • Posts: 3675
  • Wastes Life On LinuxMCE Since 2007
    • View Profile
    • My Home
Re: Fixed IP
« Reply #1 on: July 21, 2011, 11:07:26 am »
That's the reason for dhcp-extra.conf :)

brononius

  • Guru
  • ****
  • Posts: 454
  • Trying to keep it simple and centralized...
    • View Profile
    • OnIrIa - linuxMCE blog
Re: Fixed IP
« Reply #2 on: July 21, 2011, 11:10:43 am »
That's the reason for dhcp-extra.conf :)

Always nice to have confirmation. ;)
Version: linuxMCE 1404, running virtual on ESXi

Orbiters: ASUS eeePAD, Nexus 5, Huwai, web
Automation: EIB technology, KNX IP ROUTER 750
Phones: Cisco 7912-7940-7960
Camera's: Foscam POE

Marie.O

  • Administrator
  • LinuxMCE God
  • *****
  • Posts: 3675
  • Wastes Life On LinuxMCE Since 2007
    • View Profile
    • My Home
Re: Fixed IP
« Reply #3 on: July 21, 2011, 11:22:51 am »
Sometimes it makes sense to add the devices in question to the database. Especially as you have to manually make sure that IP addresses in the database and IP addresses you manually put into the extra file do not collide.