Server Administration
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsOther TechnologiesServer Administration

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #1  
Old December 26th, 2003, 07:40 AM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
DNS Questions

after we setup the web server, can we access the webpage on the web server by other pc without DNS? directly we type the web server IP, can we?
and if the web server IP is not a static IP?

Thanks in advance for your help.

Reply With Quote
  #2  
Old December 26th, 2003, 07:44 AM
tkarkkainen's Avatar
tkarkkainen tkarkkainen is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: Finland
Posts: 2,326 tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 19449 Folding Title: Novice Folder
Time spent in forums: 6 Days 10 h 53 sec
Reputation Power: 4
RE: DNS Questions

No need for DNS if it is IP-only access. If the IP is dynamic and changes, you always need the current IP in order to connect to the server.

Reply With Quote
  #3  
Old December 26th, 2003, 08:30 AM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
RE: DNS Questions

Thank you, tkarkkainen !

I currently staying at the student hostel with provided Internet Access. I did not know what is my current IP and how do we know the network is allow open port 80 for people hosting web server? That network is using DHCP to assign our IP.

Thanks in advance for your help.


Reply With Quote
  #4  
Old December 26th, 2003, 09:19 AM
tkarkkainen's Avatar
tkarkkainen tkarkkainen is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: Finland
Posts: 2,326 tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 19449 Folding Title: Novice Folder
Time spent in forums: 6 Days 10 h 53 sec
Reputation Power: 4
RE: DNS Questions

You can try port 80 by trying to run your webserver and then trying to connect to it from outside.

Finding out IP address:
In Windows:
Start->Run->winipcfg->OK
This will run a program which shows you this information and much more

In Linux:
I'm still a Linux newbie, so I don't know the command

But anyway,if you are going to test your server so that both client and server are on the same computer, you can use the loopback address which is 'localhost' or '127.0.0.1'

Reply With Quote
  #5  
Old December 26th, 2003, 12:39 PM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
RE: DNS Questions

Thank you again, tkarkkainen !

The way you guide me to get the IP address is internal my network IP or LAN IP, of course I had try it before at outside my network. It's doesn't work. It's only work inside my network with the LAN IP on same computer.

I also try before 'localhost' or '127.0.0.1' on same computer, it's ok. My Apache work properly as well.

Reply With Quote
  #6  
Old December 26th, 2003, 01:31 PM
tkarkkainen's Avatar
tkarkkainen tkarkkainen is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: Finland
Posts: 2,326 tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 19449 Folding Title: Novice Folder
Time spent in forums: 6 Days 10 h 53 sec
Reputation Power: 4
RE: DNS Questions

Okay, so you're using NAT. You can find your internet IP by going to a web page which shows your IP.I think Shields Up page shows you it: https://www.grc.com/x/ne.dll?bh0bkyd2

Reply With Quote
  #7  
Old December 26th, 2003, 01:59 PM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
RE: RE: RE: DNS Questions

the URL u give me is very useful, thank you.
but unluckly, my HTTP service, port 80 exists but is currently closed to connections.
Only HTTPS service, port 443 is open. Can we use this port for web hosting?

Reply With Quote
  #8  
Old December 27th, 2003, 08:17 AM
tkarkkainen's Avatar
tkarkkainen tkarkkainen is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: Finland
Posts: 2,326 tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 19449 Folding Title: Novice Folder
Time spent in forums: 6 Days 10 h 53 sec
Reputation Power: 4
RE: DNS Questions

Yes, you can use HTTPS, but the 'S' in it stands for secure and HTTPS requires SSL support. You need to buy a certificate for your server.

Are you sure that your server is configured correctly and it tries to listen to port 80?

Reply With Quote
  #9  
Old December 27th, 2003, 11:36 AM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
RE: RE: DNS Questions

Yes, I think my server is configured correctly because I already try many times the page by 'localhost' or '127.0.0.1', it's work.

I had already try to listen port 80 with the IP detect by the website, it's doesn't work. From the website detect, my network port 80 is closed.

Can we still have other way or hack the port 80 for web hosting? So, any idea?


Reply With Quote
  #10  
Old December 28th, 2003, 07:50 AM
tkarkkainen's Avatar
tkarkkainen tkarkkainen is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: Finland
Posts: 2,326 tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 19449 Folding Title: Novice Folder
Time spent in forums: 6 Days 10 h 53 sec
Reputation Power: 4
RE: DNS Questions

I dunno... Perhaps you should ask the people who manage the internet access for the student hostel.

Reply With Quote
  #11  
Old December 28th, 2003, 07:56 AM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
RE: RE: DNS Questions

ok, thank you tkarkkainen !
I should ask the Administrator for open port 80 permission.

Reply With Quote
  #12  
Old December 28th, 2003, 04:12 PM
postalcow postalcow is offline
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Ford CIty, PA USA
Posts: 1,267 postalcow User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
Send a message via Yahoo to postalcow
RE: DNS Questions

In your httpd.conf you could change your port to something like 81

Reply With Quote
  #13  
Old December 28th, 2003, 04:31 PM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
RE: RE: DNS Questions

Thank for ur relied, postalcow !
I changed it and try to listen port 81, 777, 1111 and other ports also. It's doesn't work. ........

Reply With Quote
  #14  
Old December 28th, 2003, 04:55 PM
postalcow postalcow is offline
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Ford CIty, PA USA
Posts: 1,267 postalcow User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
Send a message via Yahoo to postalcow
RE: DNS Questions

Did you restart apache after you changed it?

/etc/rc.d/init.d/httpd restart

Reply With Quote
  #15  
Old December 28th, 2003, 05:07 PM
djlah djlah is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: KL, Malaysia
Posts: 28 djlah User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to djlah
RE: RE: DNS Questions

yes, i change and save httpd.conf before start my Apache, also change to other port, save and restart the Apache.

I'm sure also the changing port because i try 1st with 'localhost:<insert port>' or '127.0.0.1:<insert port>' before i listen with my IP.

It's only work with '127.0.0.1:<insert port>', but doesn't work with my real IP!

Reply With Quote
Reply

Viewing: Codewalkers ForumsOther TechnologiesServer Administration > DNS Questions


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off