tcp/ip network


 
Thread Tools Search this Thread
Special Forums IP Networking tcp/ip network
# 1  
Old 07-19-2001
Question tcp/ip network

Hi,

Can someone tell me how to set up a basic tcp/ip network on unix, so windows computers can ping it?

Thnx,

Edwin
# 2  
Old 07-19-2001
Question

thats different in each derivate .. so pls. specify which UNIX and the current version e.g. SuseLinux 7.2, HPUX 11.00, ...
# 3  
Old 07-19-2001
If you are using Linux visit linuxdoc.org

# 4  
Old 07-19-2001
Hi,

I am using SunOs 5.7, unix release 4.00
# 5  
Old 07-20-2001
in order to set up a tcp/ip environment you must configure your system files to allow trafic with other networks or machines through. (DNS)
first you should configure your interface:
use the "ifconfig -a" to see your settings, then use the same command to configure...if this is a new interface you must use the "plumb" option to assign interface drivers to your card.

# ifconfig hme0 plumb
| | |
(command) (Card) (turned on)

you must bring your card down before configuration.

# ifconfig hme0 down

then you must configure your card to the IP and netmask that you want. and bring it UP

# ifconfig hme0 xx.xx.xx.xx netmask 255.x.x.x broadcast + up
use ifconfig -a to confirm changes.
In order to connect a host to the network this info. is also needed:
HOST NAME
DOMAIN NAME
IP ADDRESS
NETMASK(if needed)
DNS server name


*the file that holds information about your hostname and your loop back(127.0.0.1) /etc/hosts
*the file that solaris uses to configure system at boot time is
/etc/hostname.le0
*the file that contains the name of the host is /etc/nodename
*/etc/services hold the ports and network rules (don't touch this file)
* /etc/netmasks holds your netmask address if your host is on a segment.
There are so many more steps involved in setting up DNS and networking...but those are a few preliminary steps
Smilie
# 6  
Old 07-24-2001
If you don't mind resetting your existing network settings, you can use /usr/sbin/sys-unconfig to start from scratch and have Solaris itself walk you through a re-configuration upon reboot.
# 7  
Old 07-24-2001
linuxconf

R u configuring through router or directly to network??

If through router,
u have to give

Eg:
Gateway 139.9.78.75


Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. IP Networking

Help with to check the tcp network connectivity between servers and hosts

ello, i am new to the networking side. I have a requirement to check the tcp network connectivity between server it's running on and the list of host's and ports combination. please help me where i am going wrong. my code: #!/bin/bash #read the file line by line cd "$1" cat... (17 Replies)
Discussion started by: sknovice
17 Replies

2. Shell Programming and Scripting

Help with shell script to check the tcp network connectivity between server

Hello, I have a requirement to check the tcp network connectivity between server it's running on and the list of host's and ports combination. i have written the below code but it doesn't work, but when i execute the nc command outside the script it works fine. please help me where i am... (8 Replies)
Discussion started by: sknovice
8 Replies

3. Solaris

Too much TCP retransmitted and TCP duplicate on server Oracle Solaris 10

I have problem with oracle solaris 10 running on oracle sparc T4-2 server. Os information: 5.10 Generic_150400-03 sun4v sparc sun4v Output from tcpstat.d script TCP bytes: out outRetrans in inDup inUnorder 6833763 7300 98884 0... (2 Replies)
Discussion started by: insatiable1610
2 Replies

4. Red Hat

Network becomes slow and return fast only after restart network

Hi, I have 2 machines in production environment: 1. redhat machine for application 2. DB machine (oracle) The application doing a lot of small read&writes from and to the DB machine. The problem is that after some few hours the network from the application to the DB becomes very slow and... (4 Replies)
Discussion started by: moshesa
4 Replies

5. Solaris

No network cable But Network interface is UP and Running

I've one Netra 240 After changing main board and system configuration card reader, Network is not accessible any more, Network interfaces are always UP and Running even when there is no cable connected to Network interfaces. I tried to restart and plumb/unplumb with no luck. ifconfig -a... (7 Replies)
Discussion started by: samer.odeh
7 Replies

6. UNIX and Linux Applications

Access to network interface (Mac-network)

Hi, I'm a italian student. For my thesis I develop a gateway with protocol 6lowpan. For that I must access to network interface to develope my personal stack based on standard 802.15.4. Can you help me? I need an explanation for that. (0 Replies)
Discussion started by: berny88
0 Replies

7. IP Networking

ssh server is attachable from local network not from another network

hello i have a ubuntu ssh server that i can acess from any of my comnputers but only if they are on the same wireless network as the server. i tested trhis my tehtehring my samsung blackjack to my windows partition and installing openssh to windows it works when windows is on the wireless but no... (1 Reply)
Discussion started by: old noob
1 Replies

8. Programming

Help in developing a Network Appliation to monitor pc in a network

I am developing a Network Appliation to monitor computers in a network. Specs are App monitors the current web page viewed in each system App also can shutdown the computer in the network App can show all process run by each computer in the network I am now confused how to start my... (2 Replies)
Discussion started by: valaparambil88
2 Replies

9. IP Networking

PPP Network through TCP/IP

I have two unix systems. One is Redhat Linux and the other is Sun Solairs. I am runing PPP on my Linux machine but not on my Solaris machine. TCP/IP connects the two machines. I want to pick up PPP on both machines simultaneously with only one dial up connection on my linux machine. ... (4 Replies)
Discussion started by: Photon_Blast
4 Replies
Login or Register to Ask a Question