Tagged Questions

Fully Qualified Domain Name

learn more… | top users | synonyms

18
votes
5answers
9k views

Does anyone know a way to get the FQDN of local machine in C#?

How can you get the FQDN of a local machine in C#?
3
votes
1answer
597 views

How to get fqdn of ip addresses in c#?

On a machine there might be several IP addresses available. How can I find out all the belonging full qualified domain names (fqdn)? Update: I tried the following: IPHostEntry he = ...
3
votes
1answer
355 views

Validate FQDN in C#

Does anyone have a Regular Expression to validate legal FQDN? Now, I use on this regex: "(?=^.{1,254}$)(^(?:(?!\d+.|-)[a-zA-Z0-9_-]{1,63}(?!-).?)+(?:[a-zA-Z]{2,})$)" but it detect "aa.a" as ...
3
votes
3answers
892 views

Why isn't Java's InetAddress class resolving ipv6 addresses to their FQDN?

I'm trying to write a simple program using Java that, given an IP in either version 4 or 6 format, will return its FQDN. The following code works fine when given an ipv4 address, but will only return ...
2
votes
2answers
2k views

How can I get the FQDN of the current host in Ruby?

I need to get the fully expanded hostname of the host that my Ruby script is running on. In Perl I've used Sys::Hostname::Long with good results. Google seems to suggest I should use Socket.hostname ...
1
vote
2answers
321 views

get domain name from FQDN?

I am trying to get the NetBios name from a fully qualified Domain Name... the user inputs the FQDN and i convert to NetBios name for eg xyz.test.com (this is just an example, the FQDN an be ...
1
vote
4answers
334 views

Python regex to pull FQDN from syslog server

Python regex to pull FQDN from syslog server I'm trying to build a regex to parse our syslogs. I was asked to account for each server that uses the service. I wrote a simple regex to pull out the ...
1
vote
5answers
3k views

validate hostname string in Python

Following up to Regular expression to match hostname or IP Address? and using Restrictions on valid host names as a reference, what is the most readable, concise way to match/validate a hostname/fqdn ...
1
vote
1answer
958 views

How should I get the fully qualified domain name of “localhost” in c++ (on ubuntu)?

I've been messing around with getaddrinfo and getnameinfo but the closest I got to useful output was "localhost.localdomain". I'm not sure what to pass in for the "node" or "service" args of ...
1
vote
2answers
804 views

Get unqualified host name in .NET

Is there a .NET equivalent to the winsock function GetNameInfoW() with the NI_NOFQDN flag set? As the MSDN docs for GetNameInfoW explain: Setting the NI_NOFQDN flag results in local hosts having ...
1
vote
5answers
518 views

Sorting domain names

Has anyone implemented sorting a list of domain names? I have seen some applications sort them as flat strings, but the problem is that you end up scattering all the related hosts in a domain: ...
1
vote
3answers
5k views

Translating NETBIOS domain into a FQDN (Fully Qualified Domain Name)

In short - How do I translate a NETBIOS domain to a FQDN ? Details: Assuming I'm in domain A and I have user credentials for domain B which has a trust relationship with domain A (I can authenticate ...
0
votes
1answer
39 views

Create base dn from FQDN?

I'm creating an application which uses LDAP authentication. However, I'm stuck on the LDAP_SEARCH() function. Basically I need to dynamically create the base_dn from the FQDN (Fully Qualified Domain ...
0
votes
1answer
141 views

Obtain FQDN in Java

I am trying to obtain the FQDN of a windows machine in my domain, using Java code. I have tried the InetAddress.getByName("machine-1").getCanonicalHostName() but only returns the machine name. On ...
0
votes
2answers
87 views

What is the “Fully Qualified Domain Name” of an root server? [closed]

since one week i've a root server without a domain. in future i will host about 10 websites on it, so i started to prepare a mail-server. what is the "Fully Qualified Domain Name" if i haven't a ...
0
votes
1answer
438 views

Firewall setting for C2DM

I just developed one testing app in Android system, and try to use WiFi connection for C2DM push, but IT dept. hope that I can provide C2DM IP address for opening Firewall port:5228. Does anyone know ...
0
votes
0answers
322 views

how to setup 'hostname fqdn' on a VPS

hey there, I recently bought a vps server with DirectAdmin installed on it. everything works fine except I can't send emails. the DirectAdmin's messaging system issued this notification: Cannot ...
0
votes
2answers
51 views

IE makes you login again if you use a FQDN

So we are having a very wierd problem. We just upgraded to IE 7 last week (god, how i wish that was a joke) and now certain links on our intranet sites will ask the user to login again. It seems ...
0
votes
2answers
308 views

Validate FQDN in C# using regex

I wrote the following pattern in C# to validate a FQDN received from a user: (`?=^.{1,254}$)(^(?:(?!\d+\.)[a-zA-Z0-9_\-]{1,63}\.?)+(?:[0-9a-zA-Z]{1,})$) I want to allow the user to enter the ...
0
votes
2answers
209 views

C++ Retrive the IP from a name from the DNS - LINUX

In my C++ linu application: how can I get from a DNS the IP reffering to a name? Please attach code sample. 10x
0
votes
2answers
159 views

how can I get the IPs list reffering to an FQDN

In my C++ linux application how can I get the IPs list reffering to an FQDN? (static IPs + dynamic IPs) 10x
0
votes
1answer
103 views

SMTP Fully-qualified domain name configuration

I have trouble with receiving of email from from my SMTP to internal (the same domain) email. I mean that when I sent email from my registration@example.com email to private email somename@yahoo.com ...
0
votes
3answers
960 views

NetBIOS vs. FQDN

I've got an issue when accessing a web site, I can access it by using the NetBIOS name, but when accessing with the FQDN i get an error. Any ideas on how to troubleshoot this? (There is no DNS ...