how to connect the web


 
Thread Tools Search this Thread
Operating Systems Solaris how to connect the web
# 1  
Old 03-07-2009
how to connect the web

as the solaris cannot automatic connect the web,how to set the configuration of a LAN computer?thank you!
# 2  
Old 03-07-2009
please use the search function...

The UNIX and Linux Forums - Search Results
# 3  
Old 03-07-2009
SmilieSmilie

Quote:
Originally Posted by DukeNuke2
please use the search function...

The UNIX and Linux Forums - Search Results
# 4  
Old 03-09-2009
# 5  
Old 03-13-2009
what type of internet connection?

I consider it as a Always connected type of connection with a router and it do not require any login username or password, same as mine. Hope it will be useful for you.

Router as a DHCP Server
configure the system as DHCP client.
unplumb the device
# ifconfig rtls0 down
# ifconfig rtls0 unplumb

rename hostname.interface into a different name.
# cp hostname.rtls0 hostname.rtls0.bkp

comment the loghost line entry in /etc/hosts file

create a newfile using the command
#touch dhcp.rtls0

Plumb the NIC and bring it up by using the following commands
#ifconfig rtls0 plumb
#ifconfig rtls0 up

#ifconfig -a
now your interface should have an ip provided by the router.
Configure as a DNS client
#echo "192.168.1.1" >> /etc/resolv.conf
[ It should be the IP of Router ]
In /etc/nsswitch.conf file
in the line containing hosts add the word dns next to the word files.

Enable the DNS Client service

Now you should be able to browse
# 6  
Old 03-16-2009
Should that not be:
# echo "nameserver 192.168.1.1" >> /etc/resolv.conf
?

Although of course it would be better to edit /etc/resolv.conf in order to br able remove any unwanted, old lines in it...

You will also need to ensure that the hosts line in /etc/nsswitch.conf lists dns after files as well.
# 7  
Old 03-17-2009
Yeah, It should be..
Thanks for the correction...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Connect direct - SFTP - List of servers that I can connect

Greetings Experts, I am working for a bank client and have a question on connect-direct and SFTP. We are using Linux RedHat servers. We use connect-direct to transfer (NDM) files from one server to another server. At times, we manually transfer the files using SFTP from one server to another... (2 Replies)
Discussion started by: chill3chee
2 Replies

2. Cybersecurity

When i start CSF i cant connect VPS or download any data into it It appears i cant connect Linux VP?

It appears i cant connect linux VPS server via SSH or i cant SCP any file to it and i cant wget any file TO it (from inside it) while CSF (Config Server Firewall, LFD is running. Just after isntall in default configuration and after changing TESTING mode to LIVE mode. Trying to wget & install... (1 Reply)
Discussion started by: postcd
1 Replies

3. AIX

AIX Remote Connect Fail With “No more multiple IP addresses to connect” Error

We have a production server at a client site running AIX. And recently when users are trying to connect to it via telnet, it prompts "No more multiple IP addresses to connect". Can I know what does this error mean? and how to rectify this? Thanks. (2 Replies)
Discussion started by: a_sim
2 Replies

4. UNIX for Dummies Questions & Answers

How to connect unix server via web

How can I conncet web server via web? What are the pre- requist? I am having only one Public IP, I am useing SCO OPEN SERVER 5.0.5 Help Me. Thanks in advance (3 Replies)
Discussion started by: max_san007
3 Replies
Login or Register to Ask a Question