Questions tagged [fqdn]

A Fully Qualified Domain Name is a domain name that specifies its exact location in the hierarchy of the Domain Name System.

A Fully Qualified Domain Name is a that specifies its exact location in the hierarchy of the Domain Name System .

A FQDN consists of zero or more s followed by a top-level domain (e.g com, org, net etc.), separated by periods and terminated by a final period which represents the root zone.

Example: meta.stackoverflow.com.

As a special case, a single period . represents the root of the directory tree.

See also: RFC 1035: DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION

168 questions
0
votes
2 answers

Exception calling "GetHostEntry" with "1" argument(s): "No such device or address"

The FQDN for this machine: thufir@dur:~$ thufir@dur:~$ hostname --fqdn dur.bounceme.net thufir@dur:~$ Yes...working directly with powershell gives the FQDN of dur.bounceme.net okay: thufir@dur:~/powershell$ thufir@dur:~/powershell$…
Thufir
  • 8,216
  • 28
  • 125
  • 273
0
votes
2 answers

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
gln
  • 1,011
  • 5
  • 31
  • 61
0
votes
0 answers

CertSrv is requesting certificates with FQDN but not with Server IP

We have webserver where certificate Authority webenrollment role installed and it is pointing to Issuing CA When ever we try htps://webservername/certsrv then I can able to request certificates but when I try htps://webserver/certsrv…
0
votes
1 answer

Can Dns.GetHostEntryAsync method avoid searching FQDNs for IPV6 machines and be limited to IPV4 servers only

I am using an application to get the FQDNs for a list of servers based on their hostname. There seems to a bottleneck to the solution, the FQDN search requires IPV4 address only as there are no IPV6 machines used across the network. The additional…
0
votes
3 answers

Need to go from hostname to base domain

I need a function: f(fqdn,suffix) -> basedomain with these example inputs and outputs: f('foobar.quux.somedomain.com','com') -> 'somedomain.com' f('somedomain.com','com') -> 'somedomain.com' f('foobar.quux.somedomain.com.br','com.br') ->…
Ross Presser
  • 6,027
  • 1
  • 34
  • 66
0
votes
1 answer

Mimic FQDN on a home machine not on a domain

I have a home PC running Windows 10, no domain controller, and therefore by default I do not have a FQDN for the machine. I am trying to setup some server software for testing purposes, and it requires that I use a FQDN. How can I manipulate my…
jakc
  • 1,161
  • 3
  • 15
  • 42
0
votes
1 answer

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 this email was delivered. But when I sent from…
Victor
  • 1
  • 1
  • 1
0
votes
1 answer

Apache2: setting properly default-ssl.conf for FQDN

I am wondering how is it properly set "default-ssl.conf" parameters, related to the VPS main domain or FQDN (in this example "server.foo.org"). In particular into "default-ssl.conf" is it necessary to indicate the ServerName and aventually…
0
votes
0 answers

Setting FQDN/DNS Suffix with Vagrant

Is there any way to set up primary DNS suffix for Windows boxes? I took a look to Google and couldn't find anything for Windows. I easily set host name on Vagrantfile and define networks. # Update IP Address config.vm.network "public_network",…
Turcia
  • 653
  • 1
  • 12
  • 29
0
votes
1 answer

Getting FQDN on new server with systemd using Java

On our deployment systems we are using Java to get the fully qualified domain name for the deployment machine we're using. We're using the following method:…
Dvir669
  • 6,577
  • 1
  • 20
  • 21
0
votes
0 answers

Retrieve FQDN for multiple Servers in CMD prompt

I have been given a list of server names and asked to retrieve their fully qualified domain name. SERVER1 SERVER2 SERVER3 in the company we have multiple potential FQDN so I have been given a basic cmd file to run @ECHO OFF PING %1.EXAMPLE.COM PING…
cozbouk
  • 17
  • 1
  • 6
0
votes
1 answer

Can the domain of one FQDN itself be a FQDN?

Is it valid to name two machines such that: Machine-1: Room1.BuildingA.MyDomain.com Machine-2: BuildingA.MyDomain.com Right now the machines are being named manually in their respective /etc/hosts files. Will this naming schema cause me any…
Greg klupar
  • 39
  • 1
  • 6
0
votes
0 answers

Setup Sharepoint Foundation 2013 https connection in Team Foundation Server 2015

I set up a single Server installation of TFS 2015 SQL Server+Sharepoint Foundation 2013+TFS 2015 on one machine. The Server has multiple IPs and each installation is listening on an different IP. Sharepoint uses to IPs one for the normal SP-Sites…
Erich Bauer
  • 111
  • 1
  • 7
0
votes
0 answers

Java site won't load all components when using FQDN URL, but works when using server name URL

I'm trying to access a Java web application using the fully qualified domain name. It accesses the site, but loads only some components, excluding the help and login menus. However, if I replace the FQDN with the server name, it loads everything. a)…
user2879303
0
votes
1 answer

Should I use the FQDN as the "domain" in Django's sites framework?

I have a website where any request to the non-www domain i.e. http://example.com is redirected (with status 301) to http://www.example.com by the server. If I'm using Django's sites framework, should I set the domain as example.com or…
user4150760
  • 2,739
  • 5
  • 18
  • 25