DOMAINNAME(1) BSD General Commands Manual DOMAINNAME(1)NAME
domainname -- set or print the name of the current domain
SYNOPSIS
domainname [name-of-domain]
DESCRIPTION
Domainname prints the domain name of the current host. The super-user can set the domain name by supplying an argument.
SEE ALSO hostname(1), getdomainname(2), setdomainname(2)HISTORY
The domainname command appeared in 4.2BSD.
4.2 Berkeley Distribution July 27, 1991 4.2 Berkeley Distribution
Check Out this Related Man Page
domainname(8) System Manager's Manual domainname(8)NAME
domainname - set or display name of current domain
nisdomainname - set or display name of current NIS(YP) domain
ypdomainname - set or display name of current NIS(YP) domain
SYNOPSIS
domainname [ domain ]
nisdomainname [ domain ]
ypdomainname [ domain ]
DESCRIPTION
Without an argument, domainname displays the name of the current NIS domainname of the system. domainname uses the getdomainname(2)
function for getting the domainname, nisdomainname and ypdomainname are using yp_get_default_domain(3).
Only the super-user can set the name of the domain by specifying the new domain as an argument. All three programs uses setdomainname(2)
for this. Bear in mind, that already running programs may continue to use the old domainname.
SEE ALSO getdomainname(2), setdomainname(2), yp_get_default_domain(3), ypbind(8), ypcat(1), ypmatch(1), ypwhich(1), yppoll(8), ypserv(8), ypset(8)AUTHOR
domainname is part of the yp-tools package, which was written by Thorsten Kukuk <kukuk@linux-nis.org>.
YP Tools 2.12 April 2010 domainname(8)
I'm kindda confused about domainname and /etc/defaultdomain.
If I type domainname tesT.com, will this be added to /etc/defaultdomain or do I need to add manually on /etc/defaultdomain as well?...second question, if I type domainname tesT.com...is it case sensitive?
Thank you. (1 Reply)
Hey,
I've been on this for a while... can somebody explain to me what the domainname command really does. The man pages don't tell enough. And how can i have the domain name set so it will be the same all the time when the OS boots up. (4 Replies)
is there a variable that controls whether the settings of the domainname and dnsdomainame, nisdomaname and hostname are global or local (as in static).. i keep setting the values for these commands and after a while they disappear. how can I keep one static value that will remain even after I have... (7 Replies)
I have a need to create a connection between an erlang node and my C program.
the name of an erlang node looks something like monitor@host1.ipc.co.za.
The piece of code I have to construct a node name looks like this:
char *hostname, *domainname, *nodename = "monitor", *thisfullnodename;
... (1 Reply)
Greetings all,
I have been battling with this problem for some time now, and I am not sure if I am just not seeing the obvious anymore or have made a stupid mistake, but I just can seem to get the reverse address in my network to run the right way.
Short description of my network:
I have a... (3 Replies)
Hi,
I have a domain name that I need to convert to an LDAP base for this example - "my.domain.name"
I know that I could easily see there are 3 fields and split with awk with
awk -F. '{printf "dc=%s,dc=%s,dc=%s", $1, $2, $3}'
However, what if I have 5 fields or 4 fields, is there away... (2 Replies)