Ubuntu :: External Machines Can See Some Subdomains But Not All

Sep 16, 2010

I have a DNS server on my LAN at 192.168.140.25. Going by the example in the O'Reilly DNS and BIND book I bought, I set up the domain movie.edu and toystory.movie.edu. To my great surprise and delight, I can access toystory.movie.edu in a browser from another PC on the LAN (as long as I add 192.168.140.25 to the DNS servers). Encouraged by this victory, I decided to try to set up another subdomain at coupon.movie.edu. This kind of worked but not completely. Interestingly, I can get to both toystory.movie.edu and coupon.movie.edu on my server, but on my PC, I can only get to toystory.movie.edu, not coupon.movie.edu.

Here is my db.movie.edu:
Code:
$TTL 3h
movie.edu. IN SOA toystory.movie.edu. al.movie.edu. (
1 ; Serial
3h ; Refresh after 3 hours
1h ; Retry after 1 hour
1w ; Expire after 1 week
1h ) ; Negative caching TTL of 1 hour

movie.edu. IN NS toystory.movie.edu.
movie.edu. IN NS coupon.movie.edu.
;
; Host addresses
;
localhost.movie.edu. IN A 127.0.0.1
toystory.movie.edu. IN A 192.168.140.25
coupon.movie.edu. IN A 192.168.140.25

And here is my named.conf:
Code:
options {
directory "/etc/bind";
};

zone "movie.edu" in {
type master;
file "db.movie.edu";
};

zone "140.168.192.in-addr.arpa" in {
type master;
file "db.192.168.140";
};

zone "0.0.127.in-addr.arpa" in {
type master;
file "db.127.0.0";
};

zone "." in {
type hint;
file "db.cache";
};

#include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
#include "/etc/bind/named.conf.default-zones";

View 2 Replies


ADVERTISEMENT

Server :: External Machines Can See SOME Subdomains But Not All?

Sep 16, 2010

I have a DNS server on my LAN at 192.168.140.25. Going by the example in the O'Reilly DNS and BIND book I bought, I set up the domain movie.edu and [URL]. To my great surprise and delight, I can access toystory.movie.edu in a browser from another PC on the LAN (as long as I add 192.168.140.25 to the DNS servers). Encouraged by this victory, I decided to try to set up another subdomain at [URL].

This kind of worked but not completely. Interestingly, I can get to both [URL] and [URL] on my server, but on my PC, I can only get to [URL] not [URL]. Here is my db.movie.edu:

Code:

$TTL 3h
movie.edu. IN SOA toystory.movie.edu. al.movie.edu. (
1 ; Serial
3h ; Refresh after 3 hours

[code]....

View 1 Replies View Related

Hardware :: External Disk Used Between Two Machines - One With ATI One With NVIDIA?

Apr 29, 2009

I have Fedora 9 on an external disk, I use it at home on a desktop and at work on a laptop. It works great except that the two machines have different display adaptors. I currently have the xorg.conf arranged so that I manually comment out the driver that I am not using. It works, but I would like not to have to edit the xorg.conf every time I switch machines:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder63) Thu Feb 5 00:18:17 PST 2009
# Xorg configuration created by system-config-display

[code]....

I have tried googleing for something but cannot arrive at a satisfactory search phrase to yield the required results. I looked at [URL] and tried multiple Device and Screen sections but could not get it to work.

View 4 Replies View Related

Software :: Local Machines Showing Up With External Addresses?

Nov 9, 2009

I'm running a "relatively standard" home network environment. That is, I've got a DSL connection to my ISP, and am running a router/NAT environment that connects a number of machines -- Mac, Windows, and Linux -- to the external network. Internally, all the machines have addresses in the range of 192.168.0.x. However, because of the static/NAT address mapping, the machines whose internal addresses are mapped to external static addresses show up at external hosts as 216.xxx.yyy.zzz (the address range assigned to me by my ISP).

The other machines, which are on the network via NAT, show up as 66.xxx.yyy.zzz, the address assigned by my ISP. Finally, I'm running a local DNS server that handles addressing issues for my domains and sub-domains that are hosted on local machines. All the machines use this local server for their DNS, with my ISP's DNS server as secondary. All of this is to say that it's more or less a pretty typical configuration, and, in general, everything is working fine.

Here's where it gets tricky:

* Machine A is a Fedora 10 linux box, which hosts an externally visible domain and runs, among other things, a web server. It's assigned to one of the addresses that's mapped to a static IP address.

* Machine B is a MacBook Pro, running Snow Leopard (10.6). It typically runs at 192.168.0.6, which is NOT one of the addresses mapped to a static address, but "just" a NAT address.

Now, suppose Machine B hits the web browser run by Machine A: the log files should show the traffic arriving from the local address, 192.168.0.6. However, it instead shows up as coming from 66.xxx.yyy.zzz, the external NAT-affiliated address. This seems wrong, especially since all the other machines on my network show 192.168-type addresses when hitting the web server.

I now change Machine B's address to 192.168.0.5 -- one of the statically-mapped addresses. Browsing traffic is now arriving from 192.168.0.5, which is (I think) as it should be. I now change Machine B's address back to 192.168.0.6. The web traffic on Machine B is now reported to be arriving from 192.168.0.6 -- NOT 66.xxx.yyy.zzz. It's complicated by the fact that I don't know where to look for the problem. All the log files on all the machines seem relatively normal; there are least no glaring problems screaming out from them.

View 1 Replies View Related

General :: Filesystem To Use For External Hard Drive To Be Used With Mac And Windows Machines

Jan 20, 2011

I have a rather large USB drive that I'd like to be able to use across the different machines I own. I'm having a hard time figuring out what would be the best file system to use on it to be able to read/write things from the 3 OSs I'm in contact with: Windows, Linux and Mac.

View 5 Replies View Related

Ubuntu :: Dig - Find Out All Subdomains Of A Domain?

Feb 21, 2010

i was looking for a way to find out all subdomains of a domain and i have found dig.But it doesn't seam to work how i sow in those tutorials.this is what i get:

PHP Code:[code]....

Is there other way that i can find out all subdomains of a domain?

View 1 Replies View Related

Ubuntu :: Subdomains Point To Localhost?

Mar 31, 2011

I'm doing development on a site, let's call it mysite.com. mysite.com and www.mysite.com works fine, but proxy.mysite.com and dev.mysite.com point to the LAMP stack running on my computer. Pinging mysite.com gives me:

Code:
64 bytes from server.myhost.com (64.64.0.102): icmp_req=1 ttl=47 time=47.4 ms
Whereas dev.mysite.com gives me:
Code:
64 bytes from localhost.localdomain (127.0.0.1): icmp_req=1 ttl=64 time=0.031 ms
Subdomains of any other site work fine. I am absolutely baffled. What in the world could be causing this? I haven't been messing around in /etc/hosts or anything like that.

View 3 Replies View Related

Server :: Setup Subdomains On Ubuntu?

Jan 20, 2010

I have set up a dedicated server running Ubuntu Server Edition. I have apache2 installed and running great. I wish to let friends and family host their individiual websites on it, but I'm running into a bit of a dillema. It seems that my server automatically redirects them to my home page and not theirs.

[code].....

View 4 Replies View Related

Ubuntu :: Is The /etc/hosts File Related To Subdomains

Feb 16, 2010

I am trying to add subdomains on ubuntu 9.10 desktop edition and and I am not sure whether I need to add some info.(such as 127.0.0.1 sub1.example.com and so on) to the /etc/hosts file like the windows' windows/system32/drivers/etc/hosts file. I used to use the wamp-server(on Windows 7), I needed to edit 3 files, httpd.conf, httpd-vhosts.conf and hosts. And almost every edit is made in the httpd-vhosts.conf file on wamp-serveriles should be edited? or what else should be done that I didn't mention?

View 1 Replies View Related

Ubuntu :: DNS SRV Records - Subdomains Work On IP Address?

Apr 11, 2011

I am quite interested in one thing. I am trying to code my dns server that when I connect to one of my subdomains it connects not only to an ip address but to an ip : port address. For this I tried using SRV record, but with lack of success.

Dns server specification:
OS Ubuntu server 10.10 and using bind9
I have configured everything so that my subdomains work on an ip address, but I need some of them to work on ip : port too. In my brfconcept.lv.db file i used: (what I mentioned below isn't the full content of the file)

Code:
_http._udp IN SRV 0 5 27017 testing.brfconcept.lv
testing IN A 83.99.211.134
in my rev.0.168.192.in-addr.arpa i used: (what I mentioned below isn't the full content of the file)
Code:
134 IN PTR testing.brfconcept.lv

What I would want is not just for 1 service to aim at at the 27017 port but all services if its possible, when you enter testing.brfconcept.lv Is that possible and what am I doing wrong?

View 8 Replies View Related

Networking :: Subdomains Behind Single IP?

May 4, 2009

Here is my network setup:

Internet <-> [public IP] Router [192.168.x.x] <-> Local
Local <-> DMZ
Local <-> HostB
Local <-> HostC

I have a system set up as a DMZ which works great for accessing SSH and other various services. I have a dyndns account that points to my public IP and allows me to access my DMZ box from around the world. I would like to make a subdomain of my current dyndns account and point it to HostB so that it can host a webserver on it, and have another subdomain point to HostC with a separate webserver on it. each would have SSH, FTP, Etc and have to not conflict with one another behind one IP. I don't even know if it is possible, but it seems like if there is a request for dev.host.homelinux.com that packet would have to hit [URL]and could be iptable'd to be routed to the appropriate local machine somehow.

View 2 Replies View Related

Ubuntu Networking :: Cannot Load Subdomains Ending With Underline?

Feb 10, 2011

I work as webdeveloper and I and my co-workers have one rule - if we are done with any project, we comment them with underline at the end of the directory name. For example we have domain 'devel.domain.com' and our projects are located on projectname.devel.domain.com' . Commented project looks like thisAnd here is the problem. I can not acces subdomains ended with underline. It works last time in 9.10 (i think), but since 10.04 gives me the browser only SERVER NOT FOUND. We are using this comment-method for 7 years without problems. Why is this problem in last two editions of Ubuntu?note: there is no problem with accessing ended projects under windows or osx.

View 2 Replies View Related

Debian :: Create SubDomains Using Terminal?

Aug 18, 2011

I am not using cpanel or anything, just SSH PuTTY client. my domain is [URL]now I want to craete a sub domain i.e [URL] , how will I create this ? so I can upload files to the sub domain

View 1 Replies View Related

General :: Fedora13- Add Subdomains And Add Users To Them?

Oct 20, 2010

just wanted to know how to add subdomains, how to add users to those subdomains to send and receive mail in fedora 13.

View 3 Replies View Related

Ubuntu Servers :: Enable DNS To Manage Subdomains On Main Host?

Feb 12, 2011

I have a server with multiple domains and a DNS service (bind9) my main domain is registered with GoDaddy and it's A-record points to my server, it then has CNAME records with ns1 and ns2. I use ns1 and ns2 to point my other domains to the DNS server I host, which then manages what happens.

Anyway, what I would like to do is enable the DNS server to manage the subdomains on my main host. For example, if the domain was example.com and I use admin.example.com in the DNS server, it will not follow through unless I set the cname up, whereas my others will. How do I do a similar thing for my main domain.

View 2 Replies View Related

Server :: Hosting Multiple Subdomains On 1 Dynamic IP?

May 16, 2009

I run my own DNS servers and host my own domains. I'd like to host a few subdomains of one of my domains on a server with a dynamic IP. Is there a way to do this? I *believe* that I can host one subdomain by using a CNAME record and a dynamic DNS service.

[code]....

How can I host more than one subdomain on a server with a dynamic IP address?

View 2 Replies View Related

Server :: Configure Name Based Severs And Subdomains?

Dec 12, 2010

When I first encountered this problem, I though it would be a simple solution, but i must just be missing something obvious.i have a few name based hosts configured in apache.when i go to "www.adomainname.com" i get the first website on this list, not "adomainname.com", as i would like. Does anyone have any ideas on how to fix this?here is the relevant part of my config files:

Code:
<VirtualHost *:80>
DocumentRoot "/var/www/httest"

[code]....

View 4 Replies View Related

Fedora Servers :: Automatic Subdomains On Local Dev Machine

Jul 28, 2011

I have working localhost on my Fedora 15. Directory tree look like this

Code:

/var/www/html/default
/var/www/html/projects
/projects/foo
/projects/bar

[code]....

View 2 Replies View Related

Server :: Apache Virtualserver To Forward All Mail - Subdomains?

May 8, 2011

I want to setup a mail virtualserver in apache so that a mail. subdomain whats pointed to the box will automatically goto my roundcube install. i have all of the document root stuff working, however, mail.* doesnt work for a server name.

View 1 Replies View Related

Server :: DNS Fail: Can't Resolve Subdomains, Server Giving Wrong Response?

Jul 13, 2010

I've got a DNS problem I cannot figure out. I've been digging and pinging all day and I've waited for caches to expire and I'm not having much luck.From my desktop mac, I can't seem to resolve mail.port-o-call.net:

Code:
My-Mac:~ sneakyimp$ ping mail.port-o-call.net
ping: cannot resolve mail.port-o-call.net: Unknown host

[code]....

View 4 Replies View Related

Ubuntu :: Installing To External HDD For Portable Personal OS / External Virus Scanner?

Oct 14, 2010

I work at a local computer shop as a computer technician and we get many computer in daily that require external virus scans (having to take out the hard drives, sticking it in another machine) just to scan (if we're lucky we can sometimes just do it in safe mode).Now what I want to know is...

1. Is it possible to install Ubuntu to an external HDD and use it virtually anywhere I plug it in? Will it pick up the network card, graphics card, etc so I can just plug and go? (Of course there are drivers for some computers).

2. Is it possible to run a Windows oriented virus scanner on Ubuntu? I know I can use WINE to run Windows applications, but will it prove to be compliant with virus scanners as well?

3. The main reason why I want it to be able to pick up on hardware and just work is because I plan on using it for schooling / travelling as well, have all my documents etc saved on it for easy access.

I've used Ubuntu in the past on an old laptop that didn't have much memory, small HDD, and a crap processor but that was 5-6 years ago (I still have the disk they sent me for free ).

View 3 Replies View Related

Ubuntu :: Dual Boot - Windows Xp On HD On External HD / Disconnect External USB HD?

Jul 11, 2010

I installed Ubuntu on external USB hard drive and while booting I did got option to log into windows XP, Ubuntu. Both operating systems ran fine. i.e. GRUB had overwritten MBR and I was able to dual boot. Main issue: I have installed Ubuntu in external hard-drive so that I can use Linux whenever I want other people who are using same computer can operate on WindowsXP. Sometimes my external hard drive gives problem if there is loose connection and so that oper people using computer do not face any problem I want to disconnect external USB HD whenever I am not using Linux. GRUB menu was pointing to external hardrive so disconnecting it meant my system wont boot!!I rewrote MBR using WindowsXP CD recovery mode. Now I am unable to boot from external USB hard disk( I thought I would be able to if I choose USB hard drive in BIOS option but it did not work it logged into WindowsXP by default).Is there any way I can change WindowsXP boot.ini file so that it also shows Ubuntu in external hard disk? Or is there any way.(I do not want GRUB way as then I would have to keep my external drive connected to log into windows - which I do not want).

View 1 Replies View Related

Fedora :: External INTERNET - Use External Usb Modem By Which Surf Through Net

Jun 18, 2010

If i want to use an external usb modem by which i can surf through the net, is this possible in fedora. Because the software is always an .exe file which is only compatible with wndows. let me know if i can use and also let me know the procedure for using this

View 1 Replies View Related

General :: How To Change Xfs Journal From External To Internal / If External Log Is Gone

Dec 27, 2010

I have an external hard drive with an xfs partition on it. It was using an external journal, but in re-installing Slackware I removed the partition holding the external journal, forgetting what it was at the time. I didn't touch the contents of the external hard drive, but now I can't mount it and the various xfs programs seem to demand that it be mounted in order for them to change anything.Anyone have any ideas on how to change an xfs partition from external log to internal? Failing that, how do I get the information off it?

View 1 Replies View Related

General :: External DVD-RW (ASUS) - Which /dev/ File Associated With External Dvdrom

Dec 11, 2010

I plugged in my external dvd-r (asus) via usb. It showed me some message on shell, that it has detected the cdrom(although its dvd rom as well but nevermind) and its of ASUS. But how do i know which dev it was associated with in /dev/? Since i had to test something, i plugged it out, and save the output of ls /dev/ > ~/result.txt

after plugging the dvd-rom, i compared the results and was able to find that it was associated with simple cdrom i.e. /dev/cdrom. I wanted to know that is there any command that will tell me which /dev/ file was associated with external dvdrom? i tried to see in the following result

1) df -h ( no results, just the already mounted partitions)
2) fdisk -l ( same as above)
3) dmesg | tail (shown almost the same result as was shown on shell at the time of plugging the dvd)

View 9 Replies View Related

Ubuntu Installation :: After Installing Ubuntu 9.10 On External HDD Cannot Boot Vista If External Usb Is Unplugged

Mar 2, 2010

After installing ubuntu 9.10 on external HDD I cannot boot vista if external usb is unplugged(where ubuntu is installed). it says grub loading and after that recover grub ( i think that is what is says ... not certain in this moment ) anyway hope you get my dilemma. If you need more information I'll be glad to provide it.

View 9 Replies View Related

Ubuntu :: Evince Fails To Open Pdf External Links In Non-gnome System - Unable To Open External Link

Jul 17, 2010

Evince in non-gnome systems is unable to open external link. The error msg it shows is

Code:

Unable to open external link The specified location is not supported. I have already googled it, however it only says it is a bug, without any solution available. Evince in gnome systems however work just fine. Is there any way evince can use sensible-browser to open external links?

View 2 Replies View Related

Ubuntu Installation :: Cloning OEM To 20+ Machines?

Apr 26, 2010

We are giving away 20+ machines to 3rd world county and I was asked from the receiving party to install linux on them. What I don't want is to pop a cd into all of them and do the manually install.

I'm thinking of installing one computer the old fashion way and do the OEM-configuration on it afterwards. It would be nice to just clone the hard drives since the computer is identical right down to the hard drive.

View 7 Replies View Related

Ubuntu :: Syncing Need To Set Up Multiple Machines?

May 4, 2010

I just installed ubuntu 10.04 x64. I have installed it and set it up the way I like on my server, however I now have 3 terminals and a laptop to set it up on the exact same way. As a result Id like some advice on what can and cant be done and how. Preferably I am looking to use programs with GUIs. Thing the style of ubuntu one, software manager etc, not really too into the command line, or conf editing unless there is no other option.

1. I installed all the software from software centre I like. Now I need the same software on the other computers. I know mint has mintbackup where it just exports and imports a list if installed software. I am looking for an ubuntu equivalent.

2. Firefox and Thunderbird add-ons. I install like 20 firefox and thunderbird add ons. sometimes I can't even keep track of them. There must be a way to sync them so that each computer I install ubuntu on I can simply import the list of mozilla add ons and have it auto download them.

3. Mail Contacts and Calender Syncing. I need to sync between my 3 ubuntu machines and my windows mobile 6.5 device for calender, email/phone/name contact lists. Email is taken care of by imap, but lightnings calender isnt and neither are the contacts. If I input a contact on my phone I want it to sync to the other computers I use.

4. Ubuntu one. I have /storage/workfolder in my root directory on my personal server. I want to be able to work on documents at work on my laptop and sync them so that when I get home, they are synced on the server without causing overwrite changes etc.

5. Desktop settings, icon themes, preferences from ubuntu tweak etc. I know this one is a bit more of a long shot, but it takes 20 minutes each computer, to set up the little maximize minimize buttons on the other side, set up cairo dock the way I like, install the icon theme and backgrounds I like. isnt there a way to back this up so it doesnt have to be done each time or so I can make my other computers the same?

View 1 Replies View Related

Ubuntu :: File Sharing Between 2 Machines?

May 27, 2010

Problem: Neither Ubuntu 10.04 Lucid Lynx 64 bit machine can access any shared folders on windows PC's, or on the other Ubuntu machine. However, my windows machine CAN access the folders I've set up to share with Samba.

When I click Places>Network it FINDS the other computers, but when I double click one of the other machines the "wait" pointer comes up and then it says: blah blah blah... "The folder could not be displayed: Sorry, could not display all the contents of "Windows shares on debbie-desktop": DBus error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken."

Why can the windows computers access shared files FROM linux, but the linux computers can't access anything non-local?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved