[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Can I do this?
- Subject: Re: [cobalt-users] Can I do this?
- From: Ed Booher Jr <ebooher@xxxxxxxxxxx>
- Date: Tue Nov 14 16:29:11 2000
- Organization: One Call Internet
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
Max,
Sure you can do this. This is what DNS is all about. If these
machines are two different RaQ's then you'll need to make Host
Name: max Domain Name: hello.com on the RaQ named "maxi.blue.com"
and Host Name: lester Domain Name: hello.com on the RaQ named
"john.red.com" (Note, these don't have to be on RaQ's, I'm just
assuming that is what you are using.) Now I am going to post in
here a quick mock up of a DNS entry for the fictional domain
HELLO.COM. All you have to do is make sure that you tell your
domain name servers what IP addresses to look for both of these
"machines" at ... everything underneath the statement "$ORIGIN
hello.com" is a machine name, or "Host name" and each one has a
different IP address. Note that I made a "WWW" host for the
domain HELLO.COM as well, typically if you use the style of DNS
Record that I posted and have the IP address in the above
section, someone that would simply type HELLO.COM in a browser
will go to that IP address, so you typically want to make it the
same as the main web page, hence WWW.
TTL 172800
$ORIGIN com.
hello IN SOA ns1.onecall.net.
postmaster.ns1.onecall.net. (
22 ; Serial
300 ; Refresh
60 ; Retry
43200 ; Expire
28800 ) ; Minimum
IN NS maxi.blue.com.
IN NS john.red.com.
IN A 192.168.200.5
IN MX 1 mail.hello.com.
IN MX 10 maxi.blue.com.
$ORIGIN hello.com.
lester IN A 10.0.0.65
max IN A 192.192.100.10
www IN A 192.168.200.5
mail IN A 10.0.0.205
Regards,
Ed Booher
Network Engineer
One Call Internet
http://www.onecall.net/
"If Linux is an 18-wheeler semi, capable of pulling multi-ton
loads cross-country, BeOS is a slick Porsche 911 Turbo."
- Franco Vitaliano / OPEN Magazine -
[Disclaimer - Any and all views, opinions, outlooks,
philosophies, words of wisdom, words of brash stupidity, and
principles outlined in this post are the belief of the Reverend
Eddie W. Booher, Jr. and are not necessarily synonymous with the
views of his employer or religion.]
mdelucchi wrote:
>
> I want to have two diferent web pages, in two diferent hosts , but under the
> same domain name..
> for example:
>
> max.hello.com (home page 1, in the server "maxi.blue.com")
> lester.hello.com (home page 2, in the server "john.red.com")
>
> note: maxi.blue.com and john.red.com are dns servers...
>
> Can i do this ???? how????
> thanks
> max