List of ip address bind to the given URL [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
How to find the list of all IP address bind to the given URL using Linux command/tools.

By trying to find "list of IP addresses bound to a url", I assume you are trying to enumerate the DNS entries of a domain. Then try dnsdict6. Of course, there are various other tools too, but I prefer this one.
It is a command line tool which lists all the subdomains or DNS entries of a any domain name provided. It can also take a dictionary file as input and also display both IPv4 and IPv6 addresses of the domain.

Related

Multiple IPv6 address based on SLAAC prefix on Linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I'd like to ask is there any way to make linux get more than one (or let we say 1000) IPv6 address base on SLAAC announced prefix?
I used to do ip a add IPV6_ADDR on boot when I have a static IPv6 prefix, but now my ISP gives a dynamic prefix instead of a fixed one, which makes the added addresses expire after they changed the prefix.
An alternative way I've thought is to make a script run when the prefix is changed to re-add IPs with new prefix, but I didn't find how to do it too :(
Thanks.
Solved: It cames out I can use macvlan to solve this problem.
~# ip link add link eth0 eth0.2 type macvlan
~# ip link set dev eth0.2 up

What DNS requirements do I need to map one domain to another? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have my first site at http://www.example.com/members/quiz.php?qid=My-quiz which queries a database.
I would like to display the exact content for each quiz under my second site: http://www.mysecondsite.example/quiz.php?qid=My-quiz
I am new to DNS so I know this is probably a simple question. What do I need to do on both domains to make this work?
You cannot solve this issue solely with DNS. With DNS all you can say that the IP address for www.example.com is the same as that for www.mysecondsite.example.
Your webserver has to understand that any requests for www.mysecondsite.example are actually the same as that for www.example.com and has to fulfil or redirect those requests appropriately. Depending on your webserver, search the manual for the topic on redirecting/forwarding requests.

Hacked — got an IPv6 address, need hostname [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
So I've got a problem... A few days ago I got hacked; someone logged on to an account of mine. So after a few clicks,
I managed to get the IP Address: 2a02:a03f:1043:8500:75eb:6b9f:a26:8733
It's an IPV6 address; I don't care to post it here — it's not mine. So what I want to do: get the hostname of that IP address.
I can't tracert it, I can't ping it and the DNS lookup doesn't give a hostname.
I'm not going to do anything with the IP Address, but if I may get a hostname, it will be possible to know who did it, and confront them with the issue.
Omnomnom,
You can try https://enc.com.au/itools/inet6num to get the hostname of ipv4/6

DNS interaction between Cname and A Name [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I need to resolve a subdomain members.domain.com by CName record. Then everything else needs to resolve to an IP address via A Name.
However, the A Name seems to take precedence. It sends *.domain.com to the IP address. How can I set it to send (everything-except-members).domain.com to that IP address using the A Name, and then utilize the CNAme for members.domain.com?
In your DNS Zone create a new CNAME record:
Name/Host/Alias: members
Record Type: CNAME
Value/Answer/Destination: direction of host to point (example.wordpress.com)

Subdomain linked to a subdirectory? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I'm trying to set up my own cloud network and just got it to work the way I want it to, but I was hoping to linking it to a domain I own over at Godaddy. I want to use a subdomain for the cloud-thingy, but I don't want to link it to the ip alone. I'd rather link it to i.e "11.222.333.44/storage", instead of just "11.222.333.44" so I can still host a website at my domain's root
It seems like you need a Name-based Virtual Host, read the Apache docs.

Resources