annoying domain.local issue

12 messages Options
Embed this post
Permalink
Valent Turkovic

annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
Hi,
I have trouble accessing local services inside my company from my
Fedora desktop.

We have samba webserver at samba.domain.local and when I try to open
it via Nautilus it fails. I also have Windows XP running in VirtualBox
and Windows open this samba share with no issue.

Also pinging samba.domain.local works form Windows in VirtualBox but
doesn't work from Fedora.
There is also a web server at web.domain.local that also works under
Windows but doesn't work under Fedora 10. If I remember correctly this
all worked under Fedora 6.

Do you have any issues when domain ends with dot local (.local) ?

How can I troubleshoot this more and fix it?

Both Fedora and Windows use the same DNS and same default gateway.

Thank you in advance,
Valent.

--
http://kernelreloaded.blog385.com/
linux, blog, anime, spirituality, windsurf, wireless
registered as user #367004 with the Linux Counter, http://counter.li.org.
ICQ: 2125241, Skype: valent.turkovic

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Gbenga Shobowale

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
On Mon, Apr 27, 2009 at 4:20 PM, Valent Turkovic
<[hidden email]> wrote:

> Hi,
> I have trouble accessing local services inside my company from my
> Fedora desktop.
>
> We have samba webserver at samba.domain.local and when I try to open
> it via Nautilus it fails. I also have Windows XP running in VirtualBox
> and Windows open this samba share with no issue.
>
> Also pinging samba.domain.local works form Windows in VirtualBox but
> doesn't work from Fedora.
> There is also a web server at web.domain.local that also works under
> Windows but doesn't work under Fedora 10. If I remember correctly this
> all worked under Fedora 6.
>
> Do you have any issues when domain ends with dot local (.local) ?
>
> How can I troubleshoot this more and fix it?
>
> Both Fedora and Windows use the same DNS and same default gateway.
>
> Thank you in advance,
> Valent.
>
any domain can be resolved if you have it in /etc/resolve
type in the nameserver there and try again.. should work

Best regards

> --
> http://kernelreloaded.blog385.com/
> linux, blog, anime, spirituality, windsurf, wireless
> registered as user #367004 with the Linux Counter, http://counter.li.org.
> ICQ: 2125241, Skype: valent.turkovic
>
> --
> fedora-list mailing list
> [hidden email]
> To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
> Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
>

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
tim-9-3

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
In reply to this post by Valent Turkovic
On Mon, 2009-04-27 at 17:20 +0200, Valent Turkovic wrote:
> Do you have any issues when domain ends with dot local (.local) ?
>
> How can I troubleshoot this more and fix it?
>
> Both Fedora and Windows use the same DNS and same default gateway.

And does that DNS server have an answer for queries to that domain name?
If it does, does it have the right answer?

How domains are resolved is configured in a few places.
The /etc/nsswitch.conf has a hosts section which lists the places to
look up through, in sequence.  Mine has the following in it:

#hosts:     db files nisplus nis dns
hosts:      files dns

("files" being the /etc/hosts file, "dns" being a DHS server.)

Putting a custom entry into your hosts file, for your .local addresses,
ain't gonna help you if it consults a DNS server, first, which says
something different about .local.

That's used for networking, in general.  SMB work independently, it can
also use an lmhosts file (inside the /etc/samba/ directory), or as a
WINS server (an option inside the smb.conf file), as well as DNS.

I'd suggest posting your hosts, nsswitch.conf, resolv.conf and smb.conf
files for others to see what you're doing, rather than guess.  Also the
outputs from running nslookup and dig with your problem domain name.

i.e. dig samba.domain.local
     nslookup samba.domain.local

If you're bodging up faux domain names, you might have to fiddle quite a
few things to get it to work.  I found it easier to run my own domain
name server, with records for local domain names, and have all my local
computers use my domain name server.

--
[tim@localhost ~]$ uname -r
2.6.27.21-78.2.41.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Valent Turkovic

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
First I would like to thank you for really nice ane helpfull email.

On Mon, Apr 27, 2009 at 7:27 PM, Tim <[hidden email]> wrote:
> On Mon, 2009-04-27 at 17:20 +0200, Valent Turkovic wrote:
>> Do you have any issues when domain ends with dot local (.local) ?
>>
>> How can I troubleshoot this more and fix it?
>>
>> Both Fedora and Windows use the same DNS and same default gateway.
>
> And does that DNS server have an answer for queries to that domain name?
> If it does, does it have the right answer?

ping doesn't work from Fedora;

# ping web.iskon.local
ping: unknown host web.iskon.local

# ping samba.iskon.local
ping: unknown host web.iskon.local

> How domains are resolved is configured in a few places.
> The /etc/nsswitch.conf has a hosts section which lists the places to
> look up through, in sequence.  Mine has the following in it:
>
> #hosts:     db files nisplus nis dns
> hosts:      files dns
>
> ("files" being the /etc/hosts file, "dns" being a DHS server.)
>
> Putting a custom entry into your hosts file, for your .local addresses,
> ain't gonna help you if it consults a DNS server, first, which says
> something different about .local.
>
> That's used for networking, in general.  SMB work independently, it can
> also use an lmhosts file (inside the /etc/samba/ directory), or as a
> WINS server (an option inside the smb.conf file), as well as DNS.
>
> I'd suggest posting your hosts, nsswitch.conf, resolv.conf and smb.conf
> files for others to see what you're doing, rather than guess.  Also the
> outputs from running nslookup and dig with your problem domain name.

Here is mine nsswitch.conf :
http://fpaste.org/paste/10360

hosts :
http://fpaste.org/paste/10361

resolv.conf :
http://fpaste.org/paste/10362

> i.e. dig samba.domain.local
>     nslookup samba.domain.local

$ dig web.domain.local

; <<>> DiG 9.5.1-P2-RedHat-9.5.1-2.P2.fc10 <<>> web.domain.local
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 53744
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;web.domain.local. IN A

;; ANSWER SECTION:
web.domain.local. 1200 IN A 10.0.0.18

;; Query time: 5 msec
;; SERVER: 10.0.0.6#53(10.0.0.6)
;; WHEN: Tue Apr 28 14:18:17 2009
;; MSG SIZE  rcvd: 49



$ nslookup web.domain.local
Server: 10.0.0.6
Address: 10.0.0.6#53

Name: web.domain.local
Address: 10.0.0.18


$ host 10.0.0.18
28.0.0.10.in-addr.arpa domain name pointer web.domain.local.


But I can't ping web.domain.local :(

And typing http://web.domain.local in Firefox doesn't open the web
page, but typing IP it does. If I type 10.0.0.8 in Firefox I get the
home page.

As I mentioned I also have Winwdows in VirtualBox VM and there
everything works ok - ping works and also Firefox opens
web.domain.local without problems.


> If you're bodging up faux domain names, you might have to fiddle quite a
> few things to get it to work.  I found it easier to run my own domain
> name server, with records for local domain names, and have all my local
> computers use my domain name server.

When I enter in my hosts file this line:
10.0.0.18    web.domain.local

then I can ping the web server from my Fedora laptop... any ideas?




--
http://kernelreloaded.blog385.com/
linux, blog, anime, spirituality, windsurf, wireless
registered as user #367004 with the Linux Counter, http://counter.li.org.
ICQ: 2125241, Skype: valent.turkovic

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Valent Turkovic

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
> And typing http://web.domain.local in Firefox doesn't open the web
> page, but typing IP it does. If I type 10.0.0.8 in Firefox I get the
> home page.

Typo: correct IP is "10.0.0.18"

--
http://kernelreloaded.blog385.com/
linux, blog, anime, spirituality, windsurf, wireless
registered as user #367004 with the Linux Counter, http://counter.li.org.
ICQ: 2125241, Skype: valent.turkovic

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Valent Turkovic

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
In reply to this post by Valent Turkovic
The same issue is also with Ubuntu 9.04
I can't ping web.domain.local but I get IP via nslookup and I can ping
the IP address.

Something is fishy, and I guess I didn't configure it properly but I
can't seam to see what I'm doing wrong.

I looked at Windows ipconfig /all output and this is what I see:

C:\Documents and Settings\Valent>ipconfig /all

Windows IP Configuration

        Host Name . . . . . . . . . . . . : iskon-84830d297
        Primary Dns Suffix  . . . . . . . : iskon.local
        Node Type . . . . . . . . . . . . : Unknown
        IP Routing Enabled. . . . . . . . : No
        WINS Proxy Enabled. . . . . . . . : No
        DNS Suffix Search List. . . . . . : iskon.local

Ethernet adapter Local Area Connection:

        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : AMD PCNET Family Ethernet Adapt
CI)
        Physical Address. . . . . . . . . : 08-00-27-3F-A9-74
        Dhcp Enabled. . . . . . . . . . . : Yes
        Autoconfiguration Enabled . . . . : Yes
        IP Address. . . . . . . . . . . . : 10.0.2.15
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . : 10.0.2.2
        DHCP Server . . . . . . . . . . . : 10.0.2.2
        DNS Servers . . . . . . . . . . . : 10.0.0.16
                                            10.0.0.17
        Lease Obtained. . . . . . . . . . : 28. travanj 2009 8:36:10
        Lease Expires . . . . . . . . . . : 29. travanj 2009 8:36:10




This part seams suspicious:
        Primary Dns Suffix  . . . . . . . : iskon.local


Do I need to configure dns suffix on Fedora also, why and how?

Valent.
--
http://kernelreloaded.blog385.com/
linux, blog, anime, spirituality, windsurf, wireless
registered as user #367004 with the Linux Counter, http://counter.li.org.
ICQ: 2125241, Skype: valent.turkovic

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Valent Turkovic

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
i rushed and copy/pasted wrong info, sorry :(

The correct info is:


C:\Documents and Settings\Valent>ipconfig /all

Windows IP Configuration

       Host Name . . . . . . . . . . . . : domain-84830d297
       Primary Dns Suffix  . . . . . . . : domain.local
       Node Type . . . . . . . . . . . . : Unknown
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : domain.local

Ethernet adapter Local Area Connection:

       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : AMD PCNET Family Ethernet Adapt
       Physical Address. . . . . . . . . : 08-00-27-3F-A9-74
       Dhcp Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       IP Address. . . . . . . . . . . . : 10.0.2.15
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 10.0.2.2
       DHCP Server . . . . . . . . . . . : 10.0.2.2
       DNS Servers . . . . . . . . . . . : 10.0.0.6
                                           10.0.0.7
       Lease Obtained. . . . . . . . . . : 28. travanj 2009 8:36:10
       Lease Expires . . . . . . . . . . : 29. travanj 2009 8:36:10




This part seams suspicious:
       Primary Dns Suffix  . . . . . . . : domain.local


Do I need to configure dns suffix on Fedora also, why and how?

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Gbenga Shobowale

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
In reply to this post by Valent Turkovic
On Tue, Apr 28, 2009 at 1:31 PM, Valent Turkovic
<[hidden email]> wrote:

> First I would like to thank you for really nice ane helpfull email.
>
> On Mon, Apr 27, 2009 at 7:27 PM, Tim <[hidden email]> wrote:
>> On Mon, 2009-04-27 at 17:20 +0200, Valent Turkovic wrote:
>>> Do you have any issues when domain ends with dot local (.local) ?
>>>
>>> How can I troubleshoot this more and fix it?
>>>
>>> Both Fedora and Windows use the same DNS and same default gateway.
>>
>> And does that DNS server have an answer for queries to that domain name?
>> If it does, does it have the right answer?
>
> ping doesn't work from Fedora;
>
> # ping web.iskon.local
> ping: unknown host web.iskon.local
>
> # ping samba.iskon.local
> ping: unknown host web.iskon.local
>
>> How domains are resolved is configured in a few places.
>> The /etc/nsswitch.conf has a hosts section which lists the places to
>> look up through, in sequence.  Mine has the following in it:
>>
>> #hosts:     db files nisplus nis dns
>> hosts:      files dns
>>
>> ("files" being the /etc/hosts file, "dns" being a DHS server.)
>>
>> Putting a custom entry into your hosts file, for your .local addresses,
>> ain't gonna help you if it consults a DNS server, first, which says
>> something different about .local.
>>
>> That's used for networking, in general.  SMB work independently, it can
>> also use an lmhosts file (inside the /etc/samba/ directory), or as a
>> WINS server (an option inside the smb.conf file), as well as DNS.
>>
>> I'd suggest posting your hosts, nsswitch.conf, resolv.conf and smb.conf
>> files for others to see what you're doing, rather than guess.  Also the
>> outputs from running nslookup and dig with your problem domain name.
>
> Here is mine nsswitch.conf :
> http://fpaste.org/paste/10360
>
> hosts :
> http://fpaste.org/paste/10361
>
> resolv.conf :
> http://fpaste.org/paste/10362
>
>> i.e. dig samba.domain.local
>>     nslookup samba.domain.local
>
> $ dig web.domain.local
>
> ; <<>> DiG 9.5.1-P2-RedHat-9.5.1-2.P2.fc10 <<>> web.domain.local
> ;; global options:  printcmd
> ;; Got answer:
> ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 53744
> ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
>
> ;; QUESTION SECTION:
> ;web.domain.local.              IN      A
>
> ;; ANSWER SECTION:
> web.domain.local.       1200    IN      A       10.0.0.18
>
> ;; Query time: 5 msec
> ;; SERVER: 10.0.0.6#53(10.0.0.6)
> ;; WHEN: Tue Apr 28 14:18:17 2009
> ;; MSG SIZE  rcvd: 49
>
>
>
> $ nslookup web.domain.local
> Server:         10.0.0.6
> Address:        10.0.0.6#53
>
> Name:   web.domain.local
> Address: 10.0.0.18
>
>
> $ host 10.0.0.18
> 28.0.0.10.in-addr.arpa domain name pointer web.domain.local.
>
if you are not using the dns on your fedora you would need to
configure fedora to use another dns server which can be done in
/etc/resolv.conf
the host file is to identify the ip and local host of your computer
and dns is for other machines on the network

>
> But I can't ping web.domain.local :(
>
> And typing http://web.domain.local in Firefox doesn't open the web
> page, but typing IP it does. If I type 10.0.0.8 in Firefox I get the
> home page.
>
> As I mentioned I also have Winwdows in VirtualBox VM and there
> everything works ok - ping works and also Firefox opens
> web.domain.local without problems.
>
>
>> If you're bodging up faux domain names, you might have to fiddle quite a
>> few things to get it to work.  I found it easier to run my own domain
>> name server, with records for local domain names, and have all my local
>> computers use my domain name server.
>
> When I enter in my hosts file this line:
> 10.0.0.18    web.domain.local
>
> then I can ping the web server from my Fedora laptop... any ideas?
>
>
>
>
> --
> http://kernelreloaded.blog385.com/
> linux, blog, anime, spirituality, windsurf, wireless
> registered as user #367004 with the Linux Counter, http://counter.li.org.
> ICQ: 2125241, Skype: valent.turkovic
>
> --
> fedora-list mailing list
> [hidden email]
> To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
> Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
>

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
tim-9-3

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
In reply to this post by Valent Turkovic
Tim:
>> And does that DNS server have an answer for queries to that domain name?
>> If it does, does it have the right answer?

Valent Turkovic:
> ping doesn't work from Fedora;
>
> # ping web.iskon.local
> ping: unknown host web.iskon.local
>
> # ping samba.iskon.local
> ping: unknown host web.iskon.local

That would appear to suggest that you don't have anything to tell your
machine how to use those addresses.  No hosts file entries, no DNS
records.  Unless, you do have a DNS server with that information, but
you're querying another one that doesn't.

>> I'd suggest posting your hosts, nsswitch.conf, resolv.conf and smb.conf
>> files for others to see what you're doing, rather than guess.  Also the
>> outputs from running nslookup and dig with your problem domain name.

> Here is mine nsswitch.conf :
> http://fpaste.org/paste/10360

The important line from that is this:

hosts:      files mdns4_minimal [NOTFOUND=return] dns

Which, if I've understood the bit in the middle does:
1. "files" first look in /etc/hosts, then try
2. "mdns4_minimal", and if no answer is found, abort
without getting around to querying a "DNS" server.

This doesn't seem sensible to me.

Unless you have something special, usually all that's needed is:

hosts:      files dns

If mdns4... is doing something useful for you, perhaps try just removing
the notfound=return section.

> hosts :
> http://fpaste.org/paste/10361

Pretty much a normal file.  It defines local loopback addresses (how the
machine refers to itself, the computer equivalent of "myself").  It's
expected that something else will resolve other addresses, such as your
DNS server.

> resolv.conf :
> http://fpaste.org/paste/10362

Again, looking normal, presuming that there are DNS servers you can
query at 10.0.0.6 and 10.0.0.7.


> $ dig web.domain.local
>
> ; <<>> DiG 9.5.1-P2-RedHat-9.5.1-2.P2.fc10 <<>> web.domain.local
> ;; global options:  printcmd
> ;; Got answer:
> ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 53744
> ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
>
> ;; QUESTION SECTION:
> ;web.domain.local. IN A
>
> ;; ANSWER SECTION:
> web.domain.local. 1200 IN A 10.0.0.18
>
> ;; Query time: 5 msec
> ;; SERVER: 10.0.0.6#53(10.0.0.6)
> ;; WHEN: Tue Apr 28 14:18:17 2009
> ;; MSG SIZE  rcvd: 49

This indicates that a DNS server at 10.0.0.6 says that web.domain.local
has a numerical IP address of 10.0.0.18.

> $ nslookup web.domain.local
> Server: 10.0.0.6
> Address: 10.0.0.6#53
>
> Name: web.domain.local
> Address: 10.0.0.18

Same as above, with the dig query.

> $ host 10.0.0.18
> 28.0.0.10.in-addr.arpa domain name pointer web.domain.local.

And again.

> But I can't ping web.domain.local :(

That could be a firewall issue, but you'd not expect a comment about
unknown host, if it simply couldn't ping something it had an address
for.

> And typing http://web.domain.local in Firefox doesn't open the web
> page, but typing IP it does. If I type 10.0.0.8 in Firefox I get the
> home page.

Check if both your domain servers can answer that query.  Use the dig
command, with the address for each name server.

e.g. dig web.domain.local @10.0.0.6
     and, dig web.domain.local @10.0.0.7

If they both get answers like above, then both domain name servers are
working.

> As I mentioned I also have Winwdows in VirtualBox VM and there
> everything works ok - ping works and also Firefox opens
> web.domain.local without problems.

Windows can muddy the waters, as it can try other things to try and
resolve names, as well.  Windows networking (SMB) for instance can find
machines without DNS or hostnames (essentially asking for a machine by
name, and hoping that it answers for itself, or another machine on the
SMB network gives it the address for it).


> When I enter in my hosts file this line:
> 10.0.0.18    web.domain.local
>
> then I can ping the web server from my Fedora laptop... any ideas?

See if the comment I made about modifying your /etc/nsswitch.conf file
makes any difference.  Everything else, configuration-wise, seems
normal.

--
[tim@localhost ~]$ uname -r
2.6.27.21-78.2.41.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
tim-9-3

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
In reply to this post by Gbenga Shobowale
On Tue, 2009-04-28 at 14:18 +0100, Gbenga Shobowale wrote:
> the host file is to identify the ip and local host of your computer
> and dns is for other machines on the network

"Can be" to do that, not "only for" doing that...

--
[tim@localhost ~]$ uname -r
2.6.27.21-78.2.41.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Jerry Feldman

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
In reply to this post by Valent Turkovic
On 04/28/2009 09:03 AM, Valent Turkovic wrote:
> The same issue is also with Ubuntu 9.04
> I can't ping web.domain.local but I get IP via nslookup and I can ping
> the IP address.
>
> Something is fishy, and I guess I didn't configure it properly but I
> can't seam to see what I'm doing wrong.
>
>  
Let's go back to basics.
You can to to System/Administration/Network, and edit your connection.
You can either enter the DNS information in the DNS tab or in the
General Tab, check Automatically Obtain DNS information... Either should
do it.

--
Jerry Feldman <[hidden email]>
Boston Linux and Unix
PGP key id: 537C5846
PGP Key fingerprint: 3D1B 8377 A3C0 A5F2 ECBB  CA3B 4607 4319 537C 5846




--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

signature.asc (259 bytes) Download Attachment
Valent Turkovic

Re: annoying domain.local issue

Reply Threaded More More options
Print post
Permalink
> Let's go back to basics.
> You can to to System/Administration/Network, and edit your connection. You
> can either enter the DNS information in the DNS tab or in the General Tab,
> check Automatically Obtain DNS information... Either should do it.
>

after some troubleshoting with tcpdump I saw that no reqests were send
when I used .local domains! And after some more googling I stumbeled
upon post [1] saying that avahi is the problem and that it graps and
.local queries!

After shuting down avahi service everything started working!

Thank you all for your great effort in helping me!

[1] http://charlessocci.com/2007/12/09/resolve-local-domain-local-avahi-breaks-dns/


--
http://kernelreloaded.blog385.com/
linux, blog, anime, spirituality, windsurf, wireless
registered as user #367004 with the Linux Counter, http://counter.li.org.
ICQ: 2125241, Skype: valent.turkovic

--
fedora-list mailing list
[hidden email]
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines