Tagged Questions

21
votes
5answers
10k 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
653 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
406 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 ...
1
vote
2answers
40 views

How to get a simple computer name (without the domain name) out of a full computer name in c#?

Can I get just a simple computer name (without the domain name) from a fully qualified name (can be with or without a domain name)? Is it possible for a computer name to have a dot (.) sign in it? ...
1
vote
2answers
364 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
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
2answers
331 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 ...