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
1 answer

Changing fqdn in centos without prompting password from sudo user

For root user we can change FQDN as host-name like this: hostname 'test.com' But now, I need to change host-name from other users also we can use like this; sudo hostname 'test.com' But, it prompting for password, other users also have password,…
0
votes
1 answer

MySQL Connection String Using FQDN

Is it possible to connect on MySQL server using FQDN? e.g. from Dim con As MySqlConnection = New MySqlConnection("Data Source=192.168.90.99;Database=testdb;User ID=testadmin;Password=adminpass;") to Dim con As MySqlConnection = New…
Bryan
  • 1,245
  • 5
  • 22
  • 37
0
votes
2 answers

UrlRewriteFilter switches ? with &

I would like to redirect all traffic (with all parameters etc.) coming from pattern http://myIntranet/* to http://myIntranet.domain.com/* I set up the following configuration in urlrewrite.xml : Canonical Hostnames
Mario
  • 465
  • 2
  • 7
  • 16
0
votes
1 answer

How WINS configuration in Windows and WebSphere MQ service account related

I have a question related to WINS configuration in Windows and how it affects the dcom config MQ domain service account used. My understanding is MQ is using Domain\serviceaccount for the dcom configuration in Windows and we cannot enter…
sijo0703
  • 557
  • 1
  • 8
  • 33
0
votes
2 answers

PHP: array_pop returns the empty string

I'm using explode to break a FQDN and store it in an array. Calling pop on that array however returns a blank or empty string, and I can't figure out why. $domains = explode(".",str_replace("example.com","","test.example.com")); print "Test: " .…
rthur
  • 1,466
  • 1
  • 15
  • 15
0
votes
1 answer

FQDN Regular Expression with jqBootstrapValidation.js

I've created a form using jqBootstrapValidation.js to validate it. However I can't seem to get the regex for my FQDN format field to work.
Elijah Paul
  • 281
  • 4
  • 22
0
votes
0 answers

SSL certificate FQDN for REST web service at a specific path

I was using iOS to connect to a server using a certificate whose CN (commonname) and FQDN (fully qualified domain name) is server.myexample.com. The server certificate was signed by my own Root CA (whose certificate I added to my anchor certs via…
aspergillusOryzae
  • 746
  • 2
  • 9
  • 25
0
votes
1 answer

FQDN pointing to CNAME record

Using Rackspace.com, which offers DNS service, I am attempting to point one domain EXAMPLE.NET to a dynamic DNS updated domain EXAMPLE.DYNDNS.ORG. My problem is that when pointing the Fully Qualified Domain Name (example.net without any subdomain…
embo
  • 133
  • 1
  • 6
0
votes
1 answer

Forwarding FQDN http requests to different servers

I have two http servers (Apache Tomcat [192.168.1.5:8080] and Jetty [192.168.1.55:9090]) behind the router (Linux [192.168.1.200], iptables). I also have a public domain: domain.net. My question: How to redirect sub1.domain.net to server1…
0
votes
3 answers

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 configured yet, we have modified the Hosts file to…
Layla
  • 4,175
  • 7
  • 26
  • 20
0
votes
1 answer

Name resolution with cloudstack cloud manager

I have just set up a cloud using cloudstack 3.0. I have installed its management server on system having IP address 10.129.34.15, which can be accessed in browser using following url: "http://10.129.34.15:8080/client" Now I made an entry in…
Vibhor
  • 1
  • 1
-1
votes
1 answer

pfSense(21.05.1): Whitelist Fully Qualified Domain Name

I have created pfSense(version: 21.05.1) firewall on Azure VM. In the LAN section, I have made a rule to deny any traffic, so all the traffic to the internet is blocked. Also, I have created an alias that contains the URL www.google.com. However,…
Yash
  • 57
  • 1
  • 10
-1
votes
1 answer

How can I get new hosts to inherit the private dns domain name to automatically form an FQDN in AWS?

Even though I have a private domain configured in route 53 resolver for a vpc, new instances still have default names like: ip-10-1-1-170.ap-southeast-2.compute.internal Is there a way to configure things such that new instances will automatically…
openCivilisation
  • 796
  • 1
  • 8
  • 25
-1
votes
1 answer

Difference between IP address and Domain Name

I have some trouble to make a difference between IP address, FQDN, domain name... Tell me I'm wrong but an IP address represent a computer (a machine). And a domain name is an other representation of a an address ip, and to make the link between IP…
SWIT ER
  • 35
  • 2
  • 7
-1
votes
2 answers

Best Regex regular expression to match a list of command delimited FQDN's

Can someone help me write a regular expression to verify a list of FQDN's (fully qualified domain names). The possibilities are: [No entry] - Although I can verify this by checking the field is empty [one entry] -…
1 2 3
11
12