Link to home
Start Free TrialLog in
Avatar of gordonmann
gordonmannFlag for United States of America

asked on

Linux DNS Entries

Linux Debian or RH.  How do you add an static entry to a dns server
Avatar of dlangr
dlangr

best explained by an example i think....

In /etc/dhcpd.conf add something like:

group { # id="WORKSTATIONS"

  host Workstation1 {
    hardware ethernet 00:17:6B:51:31:F3;
    fixed-address 10.0.0.5;
  }

}

under your subnet definition.

also to get help on the server, type:

man dhcpd.conf
Avatar of gordonmann

ASKER

Not what I had in mind.  I have a P2P VPN and cannot connect to the client via the provided software UNLESS I put an entry into each systems host file.  Which for 800 users is a bit much.

ASKER CERTIFIED SOLUTION
Avatar of http:// thevpn.guru
http:// thevpn.guru
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of omarfarid
omarfarid
Flag of United Arab Emirates image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
They are right, i misread because i was kindof in a hurry. my apologies.