Moving the Server
Re: Moving the Server
Yeah, I can access the dashboard from the server. That's the only reason I haven't just wiped the box and reinstalled.
Re: Moving the Server
From the ipconfig /all command, what is the IP address(s) for DNS?
It SHOULD be that of your Amahi box. If it is the address of your router, this begins to narrow the problem.
It SHOULD be that of your Amahi box. If it is the address of your router, this begins to narrow the problem.
Re: Moving the Server
The one listed as "DNS Servers" is 208.67.222.222 which I have no idea what that one is.
The one for "Default Gateway" is the IP address of my router and the one for is DHCP Server is the IP address of my box.
The one for "Default Gateway" is the IP address of my router and the one for is DHCP Server is the IP address of my box.
Re: Moving the Server
From your server, post the output of 'cat /etc/resolv.conf'
Mine looks like this:
where 192.168.1.10 is the IP of my hda.
Mine looks like this:
Code: Select all
$ cat /etc/resolv.conf
search home.com
nameserver 192.168.1.10
Re: Moving the Server
Mine is the same except the ip address is the one for my box obviously
Re: Moving the Server
What is yoru dhcp.conf file?
Also /etc/sysconfig/network-scripts/ifcfg-eth0
Also /etc/sysconfig/network-scripts/ifcfg-eth0
Re: Moving the Server
This server is only the second time I've messed with linux so I'm not sure where to find my dhcp.conf file.
This is the ifcfg file
This is the ifcfg file
Code: Select all
[will@tompkins ~]$ cat /etc/sysconfig/network-scripts/ifcfg-eth0
# ALi Corporation ULi 1689,1573 integrated ethernet.
DEVICE=eth0
HWADDR=00:13:8F:A2:CE:58
IPADDR=192.168.0.10
NETMASK=255.255.255.0
GATEWAY=192.168.0.1
DNS1=192.168.0.10
DNS2=192.168.0.10
SEARCH=home.com
DOMAIN=home.com
BOOTPROTO=none
NM_CONTROLLED=no
ONBOOT=yes
# generated by hdactl on 2010-12-14 06:03:22 / 1
Re: Moving the Server
/etc/dhcp/dhcpd.confThis server is only the second time I've messed with linux so I'm not sure where to find my dhcp.conf file.
This looks right. My concern is that the script that builds all these files use the same variables for both files. Well kind of, I am NOT a script expert.This is the ifcfg file
Re: Moving the Server
Ah, there's a d at the end. I missed that.
Code: Select all
[root@tompkins will]# cat /etc/dhcp/dhcpd.conf
ddns-update-style interim;
do-forward-updates on;
allow unknown-clients;
ddns-updates on;
ddns-domainname "home.com";
ddns-rev-domainname "in-addr.arpa";
ignore client-updates;
allow bootp;
allow booting;
subnet 192.168.0.0 netmask 255.255.255.0 {
authoritative;
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option domain-name "home.com";
option domain-name-servers 192.168.0.10, 192.168.0.10;
option time-offset -25200;
range 192.168.0.100 192.168.0.254;
default-lease-time 14400;
max-lease-time 14400;
filename "pxelinux.0";
next-server 192.168.0.10;
}
key "ddnskey" {
algorithm hmac-md5;
secret "8zaPJsiw9tOh2JFv4xiArw==";
};
zone home.com. {
primary 127.0.0.1;
key ddnskey;
}
zone 0.168.192.in-addr.arpa. {
primary 127.0.0.1;
key ddnskey;
}
Re: Moving the Server
I think your dhcpd.conf file looks ok, assuming your hda ip is 192.168.0.10 and your router is 192.168.0.1.
Looking back through your posts you said:
Looking back through your posts you said:
Where did that come from? What command did you use to display that and which machine were you on at the time? If that was displayed by a client machine, it means that the client dns is not configured to query the hda. If it was from the hda, then I'm confused.The one listed as "DNS Servers" is 208.67.222.222 which I have no idea what that one is.

Who is online
Users browsing this forum: No registered users and 21 guests