General :: Find Any Domain Name That Resolves To IP Within A Given Net Range?

Feb 12, 2010

For example, given the range:172.128.0.0 - 172.191.255.255I need to find some domain that resolves to an IP-adress within the range. Is it possible ? I'm using a Linux system.

View 3 Replies


ADVERTISEMENT

Networking :: Domain Name Resolves To Wrong Ip From Lan?

Nov 12, 2010

I have a peculular routing problem on my hands. I have a server running in my office. it has various services running on it (httpd sshd etc.) in order to access these services I have a domain name pointing to my IP.If I try to connect to the server from an external IP, all is fine and working as normal.However, if I am connecting from the interal lan to the server, my domain name resolves to the address of the routerSo for instance everywhere on the interent my domain name resolves to the correct external IP (12.23.34.45) which is then connecting through my cable modem (12.23.34.45) to my router (192.168.55.66) and directed to my server (80.80.80.80)however if I resolve my domain from within my lan, I get my routers ip 192.168.55.66 so trying to connect to my server times out while connection to the wrong device.My network setup is very simple. nothing fancy.I think I'm using google's 8.8.8.8 for my dns server

Code:
Network Diagram
/> SERVER

[code]....

View 6 Replies View Related

General :: Find Files In Date Range?

May 31, 2010

ls -l /tmp/empty_file*
-rw-r--r-- 1 root root 0 2010-05-30 08:00 /tmp/empty_file
-rw-r--r-- 1 root root 0 2010-05-30 12:00 /tmp/empty_file1

This looks good, the files expected to be seen are output: find /usr ( -newer /tmp/empty_file -a ! -newer /tmp/empty_file1 ) -print

But this shows me files that should not be output and likewise when I replace ls with tar it is tarring a whole bunch of stuff I do not want: find /usr ( -newer /tmp/empty_file -a ! -newer /tmp/empty_file1 ) -exec ls -l {} ;

In the end I would like to replace the "ls" with "tar cvvfp some.tar {} ;", but can't figure out what is going wrong here.

View 2 Replies View Related

General :: Find All Files Modified In Date Range

Apr 30, 2010

I need to know all files modified within a date and time range.E.g: All modified files between 20 April 2010, 1100-1200 Hrs."find / -mtime +10 ! -mtime +11" :: this i found for date but how to include time as well.

View 2 Replies View Related

General :: Find A Proper Command To Move A Certain Set Of Files According To Date/time Range?

Mar 18, 2009

I'm trying to find a proper command to move a certain set of files according to date/time range. I am thinking that the command should be something like:

Code:
ls -l | grep 'date/time range' | mv /folder

View 6 Replies View Related

General :: Find A Way Of Getting These Pc To As Such Login To The Domain?

Jun 17, 2010

I have installed a Clearos box (believe this is based on redhat/centos)in our office as this is an easy setup to try and replace a windows box. We can add our windows pc so it as it acts like a domain controller.I would like to get a couple of Linux machine on the network such as Mint, Debian Lenny or ubuntu. The problem here is I need to find a way of getting these pc to as such login to the domain so they authenticating with the clearos box to login. Is there an easy way of doing this.

View 1 Replies View Related

Fedora :: Cannot Find - Define Print Range In Calc?

Feb 23, 2011

I must say I am newby using Fedora, but cannot find solution how to define print range in calc. I am using oo for almost ten years in windoze, but this is first time I have this problem. I'm using Fedora 14 L, on my lap compaq 6715b. During install, everything went just fine, only problem in last month, since I install F14 L I have find, was using oo calc. I need that rather quickly because I need to apply my tax income until end february,

View 3 Replies View Related

General :: Give Domain Administrator Privileges To Root User In Domain Controller?

Aug 17, 2009

I want to give Administrator privileges to Root user in Linux Domain Controller

View 12 Replies View Related

Ubuntu :: Firefox Resolves To 1.0.0.0 On Port 80

Jun 23, 2010

I see when going to websites in firefox that they resolve to 1.0.0.0 on port 80. I added the ISP's nameserver to /etc/resolv.conf as below. Also configured my router to give the client;s the ISP's DNS server, but it's intermittent.. Some pages load, then when refreshing some time later, they fail again.

cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 203.0.178.191

View 1 Replies View Related

General :: When Create A New Domain On My Server It Gives The New Domain It's Own Nameservers

Jun 4, 2011

I want to host 5 websites on my new virtual server so I have created 2 nameservers that point to my virtual server's IP addresses as a glue record. What confuses me is when I create a new domain on my server it gives the new domain it's own nameservers (ns1.thenewdomain.co.uk etc) do I need to change these records so they use the nameservers I created earlier? If I do? Which particular records should I change? I'm running a Unix virtual server with a Plesk control panel.

View 2 Replies View Related

Networking :: What Are Short Range Link And Long Range Links In Routing

Jun 23, 2009

get me understand the short range and the long range links from routing (and routing protocols') point of view.

View 6 Replies View Related

Software :: Gnuplot - Combining A Linear Range And Log-scale Range In The Same X-axis?

Apr 24, 2011

I want to plot a set of data in only one plot.The problem is that some points of the data should be better plotted in a linear scale (lets say 0 to 100,000) but there are other data points that, exceding the value 100,000, would be better plotted in a logarithmic scale, as they goes in the range 100,000 to 500,000,000. Let's say the data is:

Code:

X Y
0 100
10000 80
20000 75

[code]....

Is there a way to plot all these points in the same plot in only one X-axis showing two different ranges in that axis: linear: 0-100,000 logarithmic: 100,000 - 1,000,000,000?The axis would be read, for example, as:

Code:
|-----|-----|-----|-----|-----|-----|-----|-----|-----|
0 20k 40k 60k 80k 100k 1M 10M 100M 1G

(The abbreviations k-M-G are not the important point. Just shown for clarity)

View 2 Replies View Related

Programming :: Bash Script To Ping A Range Or Own IP-range?

Apr 11, 2011

I want to build a bash script, which can ping a range IP adresses which will be filled in by the admin. If there is no IP-adress filled in, then the script must ping the subnet where the system is logged on. So if my ip is 192.168.1.6, then the script must ping from 192.168.1.1 till 192.168.1.255 Or else, if there is given a beginning and ending ip it must ping that!

The first part of the bash script is to ping a given range (see below). But there is one problem, how can I tell the script to ping from $begin till $end, [..] is of course wrong! But what must be filled in there???

echo "Enter beginning IP-adres:"
read begin
echo "Enter ending IP-adres:"
read end
ping -c 1 $begin [..] $end

The second part is to find my own ip and ping the whole range.. How to do that? I only can find my own IP, but I cant ping the whole range,, how to do that?

#!/bin/bash
ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' |
cut -d: -f2 | awk '{ print $1 }'

View 11 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 Servers :: Unreachable By Hostname - Desktop Resolves Fine

Jan 3, 2011

I have a home server running Ubuntu Server 10.10, it is running Samba for file sharing with a mix of Windows and Linux boxes in my house. My main problem is that the server is only accessible by IP or by using hostname.local, but it is not possible to connect to it by just typing the hostname. Further more, it is not being automatically discovered and listed by Windows or Linux clients.

What's really odd is that I also have an Ubuntu Desktop 10.10 install on a separate computer, and that computer is accessible using just the hostname and is automatically being discovered and listed by other computers.

What is missing on the server? What is responsible for resolving just hostname, avahi seems to only deal with hostname.local and that is working fine. I also compared the samba config of the desktop and server Ubuntu installs but wasn't able to find any setting that would be influencing this. Is there some package I'm missing on the server?

View 9 Replies View Related

OpenSUSE Network :: Unable To Find Away To Log In Without Appending Domain Name To Username

Jun 4, 2010

I have ldap authentication working and the machine is joined to the domain, but I have to append the domain name to my login every time I log in. example: user@domain.I've been unable to find away to log in without appending the domain name to the username. Any ideas on how I can force the machine to automatically append the name for me?

View 2 Replies View Related

General :: Add To Windows Domain / Authenticate Users From Windows Domain?

Sep 27, 2010

i have a windows domain and linux ftp server. OSs windows 2003 server and centos 5.5. i would like to integrate this file server to windows domain. And would authenticate users from windows domain.

View 4 Replies View Related

OpenSUSE Network :: "ping Winpc" Resolves To Wrong Ip Address?

Mar 13, 2010

I have a Suse 11.2 machine named "susepc" on a network with some other windows machines. From the Suse 11.2 machine, I try ping winpchere winpc is the name of a windows machine on the LAN but the name resolves to an odd ip address:PING winpc.HOMENET (72.215.225.9)he "HOMENET" is the correct name of the windows workgroup, but the ip address is completely wrong. My LAN is based on 10.20.x.x and the winpc ip address should be 10.20.0.100. I can "ping 10.20.0.100" and it works correctly.Some things:- DHCP server is on the router- pinging from winpc to susepc works perfectly ("ping susepc" resolves to the correct IP address 10.20.0.101 and the pings respond)- "net view" on winpc lists the susepc - SAMBA is installed on susepc- the Netbios name is set to susepc- I have a shared folder on susepc that I can see, create files in, etc. on winpc with no problems.- IPV6 is disabled on susepc- I have tried setting up susepc as a WINS server (Wins Support)
- I have tried setting up susepc as a Local Network Browser

View 4 Replies View Related

OpenSUSE Network :: Nmblookup Resolves But Cannot Ping Netbios Names Or Ping FQDN

Feb 23, 2011

This applies to my 2 opensuse PC's, my Windows PC is fine.I can ping a hostname, say "PC1" but I can not ping PC1.domain.local (even the host PC can not ping it's own FQDN). When I ping just the hostname the ping stats even list the FQDN.Onto the next issue, since all my PC's, have the domain prefix domain.local, my Synology can not. I can ping it's IP and that is it. I can resolve it's name with nmblookup just fine tho and that is what is killing me. How is this not resolving.Even weirder, I can browse to "Synology" in Network Servers under places on the slab.

View 3 Replies View Related

OpenSUSE Network :: Domain- Incapable MS Windows Version To Join Suse Domain?

Jun 9, 2010

I was wondering if there is any way to enable an MS Windows client that is otherwise unable of joining a domain to join a domain controlled by (open)SUSE? Is that inability only for joining a Windows based domain but a client that runs XP Home Edition or similar domain- incapable version of Windows could join a domain if it was controlled by Linux?Pardon my newbie style, but answer doesn't have to be detailed step-by-step, just yes/no answer with some pointers would do. I am not new to linux but new to network services... search engines weren't friendly when asked this question at the search bar...

View 2 Replies View Related

Server :: Creating Domain Form Vadddomain-domain Doesn't Exist

Apr 12, 2011

iam using centos5.2.configured qmail,vpopmail. while adding domain form vadddomain<domain.co.in> At first time domain folder get created in domains directory.and also postmaster user also get created by default.And also in mysql. Now the problem is after some times or rebooting system domain get erased automatic.also in /var/qmail/users/assign file domain name get erased.

View 1 Replies View Related

Server :: Created Domain But Not Getting Domain In /var/qmail/user/assign File?

Apr 7, 2011

i had created domain but not getting domain in /var/qmail/user/assign file.also it error /home/vpopmail/bin/vdominfo abc.co.inInvalid domain name

View 2 Replies View Related

General :: Moniter Out Of Range Error / Fix This?

Jul 30, 2010

I just installed Debian lenny 5.0.5 and when i start it up the monitor just displays a 'out of range' error. im using a Radeon HD 5570 graphics card and a lG W2353V-PF monitor.

what do i have to do to fix this problem?

View 2 Replies View Related

General :: Monitor Resoluti8on - All Out Of Range

Mar 28, 2010

the electric went off and when it come back on my monitor picture was all out of range. I changed the resolution to bring the picture back in and now the words are almost unreadable.

View 1 Replies View Related

General :: Moving Files By Specifying Range

Apr 9, 2010

I'm trying to move files from one directory to another. I only want the files that start with a capital and within a certain range. Say all files that start with a capital between A-K. I've googled this and they all say to use: [A-M]*. But it moves all files A-M regardless if they are uppercase or lowercase.

View 7 Replies View Related

General :: Out Of Range 92.6khz/58hz

Jun 29, 2011

I have just installed UBUNTU 11.04 and found when booting that "out of range " statement came up, after a few moments it completes the boot, but as I have several distros it doesn't open the selection screen.

View 1 Replies View Related

General :: Specific Range Of Records?

Feb 24, 2010

I am having a log file where there is some discontinuous of dates are there but if i go for range of date to find the records, if is some date is missing the result is displaying full file list( Start date to end of file ) How could i restrict the result upto the mentioned date range.

Code:
$cat sample.log
Jan 03 -error yyyy-1234

[code]...

View 6 Replies View Related

General :: Squid 2.6 : Acl Which Should Apply To Ip Range?

Feb 7, 2011

i have squid 2.6 installed on centos i created acl which should apply to this ip range i.e 192.168.1.10-192.168.1.15 and excluded 192.168.1.13 how can i do

View 14 Replies View Related

Ubuntu Servers :: Unable To Setup The Domain - How To Use Two Domain Names

Feb 16, 2011

i have registered two domain names that i want to use to connect to my ubuntu server. I was wondering how to do this i was looking at bind9 but that didn't work that great. The server is behind a router with firewall i can connect to it using the external IP address but i like to use the two domain names if that is possible.

View 3 Replies View Related

General :: How To Get Bash Shell History Range

Oct 4, 2010

How can I get/filter history entries in a specific range?I have a large history file and frequently usehistory | grep somecommandNow, my memory is pretty bad and I also want to see what else I did around the time I entered the command.For now I do this:get match, say 4992 somecommand, then I do history | grep 49[0-9][0-9]this is usually good enough, but I would much rather do it more precisely, that is see commands from 4972 to 5012, that is 20 commands before and 20 after. I am wondering if there is an easier way? I suspect, a custom script is in order, but perhaps someone else has done something similar before.

View 2 Replies View Related







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