Sponsored Content
Full Discussion: Need help with DNS problem
Operating Systems Linux Debian Need help with DNS problem Post 302932315 by xabbu on Tuesday 20th of January 2015 03:15:10 PM
Old 01-20-2015
Hi,

try
Code:
dig some_url

and
Code:
dig some_url @8.8.8.8

What will you get?
Show me the /etc/resolv.conf please.
It looks that there is something wrong in it, maybe some hidden codes...

Next try:

Code:
dos2unix /etc/resolv.conf

and test again.

Regards,
xabbu
 

10 More Discussions You Might Find Interesting

1. IP Networking

dns problem

helo all i got problem in my network i got sun 206 and i work with sendmail when i had the praimery dns of my isp i can send mail from the server but i cant send from the clinet (outlook in the network) and if i chnage it to secundery dns off my isp i can send frome the server and frome the... (2 Replies)
Discussion started by: nis
2 Replies

2. IP Networking

DNS problem

Hello! I´ve got a problem with the dns on one of our servers. When i try to look someting up with either nslookup or ping i get the folowing error message. -------------------------------------------------------------------------------- # nslookup sun.com *** Can't find server name for... (4 Replies)
Discussion started by: dozy
4 Replies

3. IP Networking

DNS Problem

Hello Everyone, I am working on a HP-Unix machine and I am trying to get it to use the University's DNS servers. Long story short... the resolv.conf file is ok : nameserver 149.150.51.1 nameserver 149.150.51.2 search shu.edu The hosts file is ok. And when I make the nsswitch.conf file... (1 Reply)
Discussion started by: loslappy
1 Replies

4. UNIX for Dummies Questions & Answers

DNS problem

Hi all, I have got the message of "*** Can't find server name for address 10.131.120.50: Server failed" when I typed nslookup on the DNS server I setup the /etc/named.conf and all the data files in /var/named and start the named daemon. I also mae appropriate change on the resolv.conf and... (2 Replies)
Discussion started by: stancwong
2 Replies

5. Solaris

DNS Problem

hello !!! I have some problem for Sun Solaris DNS i already configured named.boot , named.rev, named.hosts but when i start the DNS service there is an error " error cannot find named.conf " in my manual there is no named.conf configuration it said that if you configure named.boot... (3 Replies)
Discussion started by: giancarlodjabon
3 Replies

6. Shell Programming and Scripting

DNS problem

sorry guys, I had big problem solving this simple problem..:D hope expertise here can solve this problem. ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 1361 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION: ;. IN... (0 Replies)
Discussion started by: unknown2205
0 Replies

7. UNIX for Advanced & Expert Users

DNS problem

Hello again I having a wired problem if use nslookup to check some changes that I made to the blackhole list.First I'll check a site that I know has access throught our sever and it would time out. Then If I'll try it 10 seconds later it would work. Isn't that wierd. But my blackhole list site... (0 Replies)
Discussion started by: aojmoj
0 Replies

8. Ubuntu

dns problem

hello. i'm running ubuntu desktop 8.04 and i use it ot host some sites (actually i'm trying ) well i'm running to websites (with the same dns,ip) site1.com work fine but site2.com give me this Hmm, site2.com isn't loading right now. The computers that run site2.com are having some trouble.... (2 Replies)
Discussion started by: mazi
2 Replies

9. Red Hat

Mail Problem. Maybe, it is a DNS Problem!

Hi, i've a redhat linux 9 upadated by redhat from 7 version to 9 version. A couple of days ago i was a problem with my mail, in other words i'm not able to get any email nor to send any email. I've a proxy configuration and i tried to set iptables in order to verify the port. The 110,255 and 995... (1 Reply)
Discussion started by: pintalgi
1 Replies

10. IP Networking

DNS problem?

I uploaded a new domain and I am having problems with the paths... Works..shop.mydomain.com/index.php?main_page=contact. Does Not Work..shop.mydomain.com/contact/. copied the entire directory from a working directory and changed the appropriate paths where necessary (as usual) so ...? ... (3 Replies)
Discussion started by: tifischer
3 Replies
Locale::Codes::LangExt(3pm)				 Perl Programmers Reference Guide			       Locale::Codes::LangExt(3pm)

NAME
Locale::Codes::LangExt - standard codes for language extension identification SYNOPSIS
use Locale::Codes::LangExt; $lext = code2langext('acm'); # $lext gets 'Mesopotamian Arabic' $code = langext2code('Mesopotamian Arabic'); # $code gets 'acm' @codes = all_langext_codes(); @names = all_langext_names(); DESCRIPTION
The "Locale::Codes::LangExt" module provides access to standard codes used for identifying language extensions, such as those as defined in the IANA language registry. Most of the routines take an optional additional argument which specifies the code set to use. If not specified, the default IANA language registry codes will be used. SUPPORTED CODE SETS
There are several different code sets you can use for identifying language extensions. A code set may be specified using either a name, or a constant that is automatically exported by this module. For example, the two are equivalent: $lext = code2langext('acm','alpha'); $lext = code2langext('acm',LOCALE_LANGEXT_ALPHA); The codesets currently supported are: alpha This is the set of three-letter (lowercase) codes from the IANA language registry, such as 'acm' for Mesopotamian Arabic. This is the default code set. ROUTINES
code2langext ( CODE [,CODESET] ) langext2code ( NAME [,CODESET] ) langext_code2code ( CODE ,CODESET ,CODESET2 ) all_langext_codes ( [CODESET] ) all_langext_names ( [CODESET] ) Locale::Codes::LangExt::rename_langext ( CODE ,NEW_NAME [,CODESET] ) Locale::Codes::LangExt::add_langext ( CODE ,NAME [,CODESET] ) Locale::Codes::LangExt::delete_langext ( CODE [,CODESET] ) Locale::Codes::LangExt::add_langext_alias ( NAME ,NEW_NAME ) Locale::Codes::LangExt::delete_langext_alias ( NAME ) Locale::Codes::LangExt::rename_langext_code ( CODE ,NEW_CODE [,CODESET] ) Locale::Codes::LangExt::add_langext_code_alias ( CODE ,NEW_CODE [,CODESET] ) Locale::Codes::LangExt::delete_langext_code_alias ( CODE [,CODESET] ) These routines are all documented in the Locale::Codes::API man page. SEE ALSO
Locale::Codes The Locale-Codes distribution. Locale::Codes::API The list of functions supported by this module. http://www.iana.org/assignments/language-subtag-registry The IANA language subtag registry. AUTHOR
See Locale::Codes for full author history. Currently maintained by Sullivan Beck (sbeck@cpan.org). COPYRIGHT
Copyright (c) 2011-2013 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-11-04 Locale::Codes::LangExt(3pm)
All times are GMT -4. The time now is 11:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy