Hi all -
I admit that my understanding of networking problems is pretty limited. I'm running 12.3 in the VirtualBox VM on my Windows computer, and am trying to connect to a secure network through a university. Usually there is a login page that my browser redirects me to, but I can't even get that far. Here are some details:
I suspect the problem lies somehow in the nameserver lines of my resolv.conf file, having compared to several other postings? If this is an obvious fix, could someone tell me what jumps out at them? Thank you so much,
Taylor
I admit that my understanding of networking problems is pretty limited. I'm running 12.3 in the VirtualBox VM on my Windows computer, and am trying to connect to a secure network through a university. Usually there is a login page that my browser redirects me to, but I can't even get that far. Here are some details:
Code:
taylor@linux-b8oo:~> ping google.com
ping: unknown host google.com
Code:
taylor@linux-b8oo:~> cat /etc/resolv.conf
### /etc/resolv.conf file autogenerated by netconfig!
#
# Before you change this file manually, consider to define the
# static DNS configuration using the following variables in the
# /etc/sysconfig/network/config file:
# NETCONFIG_DNS_STATIC_SEARCHLIST
# NETCONFIG_DNS_STATIC_SERVERS
# NETCONFIG_DNS_FORWARDER
# or disable DNS configuration updates via netconfig by setting:
# NETCONFIG_DNS_POLICY=''
#
# See also the netconfig(8) manual page and other documentation.
#
# Note: Manual change of this file disables netconfig too, but
# may get lost when this file contains comments or empty lines
# only, the netconfig settings are same with settings in this
# file and in case of a "netconfig update -f" call.
#
### Please remove (at least) this line when you modify the file!
search tufts.edu
nameserver 192.168.2.1
nameserver 130.64.25.5
nameserver 130.64.35.5
Code:
taylor@linux-b8oo:~> /sbin/route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.0.2.2 0.0.0.0 UG 0 0 0 eth0
10.0.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
Code:
taylor@linux-b8oo:~> /sbin/ifconfig
eth0 Link encap:Ethernet HWaddr 08:00:27:34:08:40
inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe34:840/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:492 errors:0 dropped:0 overruns:0 frame:0
TX packets:813 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:45742 (44.6 Kb) TX bytes:104483 (102.0 Kb)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:155 errors:0 dropped:0 overruns:0 frame:0
TX packets:155 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:12254 (11.9 Kb) TX bytes:12254 (11.9 Kb)
Taylor