How to connect localhost of a server Remotely? [closed] Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Come Celebrate our 10 Year Anniversary!How to resolve a internal server name from Internet with an internal DNS server (windows 2008)Setting up a DNS name server for a mass virtual host with Bind9CentOS BIND DNS Troubleshooting?configure BIND DNS on debianReach self hosted server from LANWhy don't my server query the 2nd entry in my resolv.conf?Windows 2008 dns server can't find his own host nameping incorrectly pinging 127.0.0.1Bind9 DNS resolves full domain to localhostCan't resolve server by fqdn when search domain is enabled

Is the Standard Deduction better than Itemized when both are the same amount?

How to deal with a team lead who never gives me credit?

Does accepting a pardon have any bearing on trying that person for the same crime in a sovereign jurisdiction?

Java 8 stream max() function argument type Comparator vs Comparable

Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?

Did Kevin spill real chili?

Why are there no cargo aircraft with "flying wing" design?

Can Pao de Queijo, and similar foods, be kosher for Passover?

Should gear shift center itself while in neutral?

Does the Giant Rocktopus have a Swim Speed?

∞ symbol in external pdf disappears when used as figure

Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?

Why does Python start at index 1 when iterating an array backwards?

Why is "Consequences inflicted." not a sentence?

Do I really need recursive chmod to restrict access to a folder?

How can I make names more distinctive without making them longer?

How can I fade player when goes inside or outside of the area?

Does surprise arrest existing movement?

How to recreate this effect in Photoshop?

Is it possible to boil a liquid by just mixing many immiscible liquids together?

IndentationError when pasting code in Python 3 interpreter mode

What does “buco del culo” mean here?

macOS-like app switching in Plasma 5

Marking the functions of a sentence: 'She may like it'



How to connect localhost of a server Remotely? [closed]



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Come Celebrate our 10 Year Anniversary!How to resolve a internal server name from Internet with an internal DNS server (windows 2008)Setting up a DNS name server for a mass virtual host with Bind9CentOS BIND DNS Troubleshooting?configure BIND DNS on debianReach self hosted server from LANWhy don't my server query the 2nd entry in my resolv.conf?Windows 2008 dns server can't find his own host nameping incorrectly pinging 127.0.0.1Bind9 DNS resolves full domain to localhostCan't resolve server by fqdn when search domain is enabled



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















Story:-



My target is test.com and it has port 53 open. And also there is another domain on the page of test.com i.e. testportal.com (Don't confuse I just saw it was embedded with HTML source)



So I did initial recon and found that Zone transfer was not allowed at test.com but it was available to testportal.com, and I have got all the entries from it.



eg. admin.testportal.com.



But the main problem was they all are hosted at 127.0.0.1 even testportal.com too.



I want to access admin.testportal.com so for that I added a name server entry to resolve.conf and then I tried to ping to admin.testportal.com I can successfully ping it. But when I access it through the browser it can't access.



Now what is the problem? Is I am doing correct?



Additional Info:-



This was the result when I run this command



dig axfr testportal.com @< ip of test.com>

testportal.com. 604800 IN SOA localhost. root.localhost. 2 604800 86400 2419200 604800
testportal.com. 604800 IN AAAA ::1
testportal.com. 604800 IN NS localhost.
testportal.com. 604800 IN A 127.0.0.1
admin.testportal.com. 604800 IN A 127.0.0.1
files.testportal.com. 604800 IN A 127.0.0.1
imports.testportal.com. 604800 IN A 127.0.0.1
vpn.testportal.com. 604800 IN A 127.0.0.1
testportal.com. 604800 IN SOA



Now I added Name server entry at resolv.conf file i.e.



nameserver <ip of test.com>


Then, I try to check by ping to admin.testportal.com and it was successfully ping but can't access it from browser. Why?










share|improve this question















closed as unclear what you're asking by Sven Apr 10 at 13:15


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.


















  • @Sven♦ Hope this clears now.

    – janu agrawal
    Apr 10 at 13:39











  • Your webserver should listen to 0.0.0.0 and not 127.0.0.1. A service listening to the local loopback device is only accessible from the server itself.

    – Henrik Pingel
    Apr 10 at 13:50











  • So there is no way to access admin.testportal.com? Then why I am getting ping successfully to admin.testportal.com?.

    – janu agrawal
    Apr 10 at 14:05











  • ping is ICMP. That a different protocol. succesful ping confirms that routing and alike works but it doesn't tell you anything about TCP listeners on the target server.

    – Henrik Pingel
    Apr 10 at 14:09











  • Okay! So do you have any suggestions regarding? I am considering that It is not possible. Do you also?

    – janu agrawal
    Apr 10 at 14:20

















0















Story:-



My target is test.com and it has port 53 open. And also there is another domain on the page of test.com i.e. testportal.com (Don't confuse I just saw it was embedded with HTML source)



So I did initial recon and found that Zone transfer was not allowed at test.com but it was available to testportal.com, and I have got all the entries from it.



eg. admin.testportal.com.



But the main problem was they all are hosted at 127.0.0.1 even testportal.com too.



I want to access admin.testportal.com so for that I added a name server entry to resolve.conf and then I tried to ping to admin.testportal.com I can successfully ping it. But when I access it through the browser it can't access.



Now what is the problem? Is I am doing correct?



Additional Info:-



This was the result when I run this command



dig axfr testportal.com @< ip of test.com>

testportal.com. 604800 IN SOA localhost. root.localhost. 2 604800 86400 2419200 604800
testportal.com. 604800 IN AAAA ::1
testportal.com. 604800 IN NS localhost.
testportal.com. 604800 IN A 127.0.0.1
admin.testportal.com. 604800 IN A 127.0.0.1
files.testportal.com. 604800 IN A 127.0.0.1
imports.testportal.com. 604800 IN A 127.0.0.1
vpn.testportal.com. 604800 IN A 127.0.0.1
testportal.com. 604800 IN SOA



Now I added Name server entry at resolv.conf file i.e.



nameserver <ip of test.com>


Then, I try to check by ping to admin.testportal.com and it was successfully ping but can't access it from browser. Why?










share|improve this question















closed as unclear what you're asking by Sven Apr 10 at 13:15


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.


















  • @Sven♦ Hope this clears now.

    – janu agrawal
    Apr 10 at 13:39











  • Your webserver should listen to 0.0.0.0 and not 127.0.0.1. A service listening to the local loopback device is only accessible from the server itself.

    – Henrik Pingel
    Apr 10 at 13:50











  • So there is no way to access admin.testportal.com? Then why I am getting ping successfully to admin.testportal.com?.

    – janu agrawal
    Apr 10 at 14:05











  • ping is ICMP. That a different protocol. succesful ping confirms that routing and alike works but it doesn't tell you anything about TCP listeners on the target server.

    – Henrik Pingel
    Apr 10 at 14:09











  • Okay! So do you have any suggestions regarding? I am considering that It is not possible. Do you also?

    – janu agrawal
    Apr 10 at 14:20













0












0








0








Story:-



My target is test.com and it has port 53 open. And also there is another domain on the page of test.com i.e. testportal.com (Don't confuse I just saw it was embedded with HTML source)



So I did initial recon and found that Zone transfer was not allowed at test.com but it was available to testportal.com, and I have got all the entries from it.



eg. admin.testportal.com.



But the main problem was they all are hosted at 127.0.0.1 even testportal.com too.



I want to access admin.testportal.com so for that I added a name server entry to resolve.conf and then I tried to ping to admin.testportal.com I can successfully ping it. But when I access it through the browser it can't access.



Now what is the problem? Is I am doing correct?



Additional Info:-



This was the result when I run this command



dig axfr testportal.com @< ip of test.com>

testportal.com. 604800 IN SOA localhost. root.localhost. 2 604800 86400 2419200 604800
testportal.com. 604800 IN AAAA ::1
testportal.com. 604800 IN NS localhost.
testportal.com. 604800 IN A 127.0.0.1
admin.testportal.com. 604800 IN A 127.0.0.1
files.testportal.com. 604800 IN A 127.0.0.1
imports.testportal.com. 604800 IN A 127.0.0.1
vpn.testportal.com. 604800 IN A 127.0.0.1
testportal.com. 604800 IN SOA



Now I added Name server entry at resolv.conf file i.e.



nameserver <ip of test.com>


Then, I try to check by ping to admin.testportal.com and it was successfully ping but can't access it from browser. Why?










share|improve this question
















Story:-



My target is test.com and it has port 53 open. And also there is another domain on the page of test.com i.e. testportal.com (Don't confuse I just saw it was embedded with HTML source)



So I did initial recon and found that Zone transfer was not allowed at test.com but it was available to testportal.com, and I have got all the entries from it.



eg. admin.testportal.com.



But the main problem was they all are hosted at 127.0.0.1 even testportal.com too.



I want to access admin.testportal.com so for that I added a name server entry to resolve.conf and then I tried to ping to admin.testportal.com I can successfully ping it. But when I access it through the browser it can't access.



Now what is the problem? Is I am doing correct?



Additional Info:-



This was the result when I run this command



dig axfr testportal.com @< ip of test.com>

testportal.com. 604800 IN SOA localhost. root.localhost. 2 604800 86400 2419200 604800
testportal.com. 604800 IN AAAA ::1
testportal.com. 604800 IN NS localhost.
testportal.com. 604800 IN A 127.0.0.1
admin.testportal.com. 604800 IN A 127.0.0.1
files.testportal.com. 604800 IN A 127.0.0.1
imports.testportal.com. 604800 IN A 127.0.0.1
vpn.testportal.com. 604800 IN A 127.0.0.1
testportal.com. 604800 IN SOA



Now I added Name server entry at resolv.conf file i.e.



nameserver <ip of test.com>


Then, I try to check by ping to admin.testportal.com and it was successfully ping but can't access it from browser. Why?







linux domain-name-system dns-zone






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 10 at 13:38







janu agrawal

















asked Apr 10 at 13:09









janu agrawaljanu agrawal

263




263




closed as unclear what you're asking by Sven Apr 10 at 13:15


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.









closed as unclear what you're asking by Sven Apr 10 at 13:15


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.














  • @Sven♦ Hope this clears now.

    – janu agrawal
    Apr 10 at 13:39











  • Your webserver should listen to 0.0.0.0 and not 127.0.0.1. A service listening to the local loopback device is only accessible from the server itself.

    – Henrik Pingel
    Apr 10 at 13:50











  • So there is no way to access admin.testportal.com? Then why I am getting ping successfully to admin.testportal.com?.

    – janu agrawal
    Apr 10 at 14:05











  • ping is ICMP. That a different protocol. succesful ping confirms that routing and alike works but it doesn't tell you anything about TCP listeners on the target server.

    – Henrik Pingel
    Apr 10 at 14:09











  • Okay! So do you have any suggestions regarding? I am considering that It is not possible. Do you also?

    – janu agrawal
    Apr 10 at 14:20

















  • @Sven♦ Hope this clears now.

    – janu agrawal
    Apr 10 at 13:39











  • Your webserver should listen to 0.0.0.0 and not 127.0.0.1. A service listening to the local loopback device is only accessible from the server itself.

    – Henrik Pingel
    Apr 10 at 13:50











  • So there is no way to access admin.testportal.com? Then why I am getting ping successfully to admin.testportal.com?.

    – janu agrawal
    Apr 10 at 14:05











  • ping is ICMP. That a different protocol. succesful ping confirms that routing and alike works but it doesn't tell you anything about TCP listeners on the target server.

    – Henrik Pingel
    Apr 10 at 14:09











  • Okay! So do you have any suggestions regarding? I am considering that It is not possible. Do you also?

    – janu agrawal
    Apr 10 at 14:20
















@Sven♦ Hope this clears now.

– janu agrawal
Apr 10 at 13:39





@Sven♦ Hope this clears now.

– janu agrawal
Apr 10 at 13:39













Your webserver should listen to 0.0.0.0 and not 127.0.0.1. A service listening to the local loopback device is only accessible from the server itself.

– Henrik Pingel
Apr 10 at 13:50





Your webserver should listen to 0.0.0.0 and not 127.0.0.1. A service listening to the local loopback device is only accessible from the server itself.

– Henrik Pingel
Apr 10 at 13:50













So there is no way to access admin.testportal.com? Then why I am getting ping successfully to admin.testportal.com?.

– janu agrawal
Apr 10 at 14:05





So there is no way to access admin.testportal.com? Then why I am getting ping successfully to admin.testportal.com?.

– janu agrawal
Apr 10 at 14:05













ping is ICMP. That a different protocol. succesful ping confirms that routing and alike works but it doesn't tell you anything about TCP listeners on the target server.

– Henrik Pingel
Apr 10 at 14:09





ping is ICMP. That a different protocol. succesful ping confirms that routing and alike works but it doesn't tell you anything about TCP listeners on the target server.

– Henrik Pingel
Apr 10 at 14:09













Okay! So do you have any suggestions regarding? I am considering that It is not possible. Do you also?

– janu agrawal
Apr 10 at 14:20





Okay! So do you have any suggestions regarding? I am considering that It is not possible. Do you also?

– janu agrawal
Apr 10 at 14:20










0






active

oldest

votes

















0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes

Popular posts from this blog

How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos