netstat: no support for `AF INET (sctp)' on this system.

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat netstat: no support for `AF INET (sctp)' on this system.
# 1  
Old 10-29-2007
netstat: no support for `AF INET (sctp)' on this system.

hello

I am using fedora core 6 on my system....
and doing coding of socket connection with redhat 9
when I am doing netstat -v command it shows

error::: netstat: no support for `AF INET (sctp)' on this system.

As AF_INET is very useful to me in socket connection program....
how to recover from it????
please help......
thanks & regards
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Programming

Sctp api name to retrieve the values of structure sctpassoctable

Hi i want a sctp (lksctp) api which can retrieve the values of the sctp structure "sctpAssocTable" It is sctpassoctable or sctpassocentry. SctpAssocEntry ::= SEQUENCE { sctpAssocId Unsigned32, sctpAssocRemHostName OCTET STRING, sctpAssocLocalPort ... (1 Reply)
Discussion started by: harioum
1 Replies

2. Shell Programming and Scripting

stty: tcgetattr: A specified file does not support the ioctl system call

Hi Gurus, I have scheduled a script using cron scheduler. Script works fine when i run it manually. But it gives the following error in cron log. stty: tcgetattr: A specified file does not support the ioctl system call. I have given the following statement in cron. 0-59 * * * *... (5 Replies)
Discussion started by: svajhala
5 Replies

3. Solaris

Multi-homing in SCTP of OpenSolaris10

Hi, I met a problem about multi-homing in SCTP of opensolaris10 system. There is a server and a client communicating with SCTP socket (One-To-One style). For the server, I bind two IP addresses (with different subclass) to the its socket . For the client, two IP addresses are binded to... (0 Replies)
Discussion started by: reallum
0 Replies

4. Solaris

/etc/inet.d/nddconfig file.......

Hiii... Every One..... I want to know about : /etc/init.d/nddconfig file, and all it's entries .And how this file controles parameters of OS Hardening...... If any one have related materials then plz HELP........ (2 Replies)
Discussion started by: prashantshukla
2 Replies

5. Solaris

Accidentally did a unlink inet

I was trying to remove a symbolic link of /etc/hosts to /etc/inet/hosts well i forgot the command and in the /etc directory i did unlink inet and now i can not get into inet and it does not exist in /etc 1) what do i do to fix the inet directory 2) how do i link /etc/hosts to... (1 Reply)
Discussion started by: deaconf19
1 Replies

6. UNIX for Advanced & Expert Users

stty: tcgetattr: A specified file does not support the ioctl system call.

Hi, I am trying to implement SSH between two systems say ukblx151 & ukapx047 with ID say khzs228, i follow the following process: Step-1) $ ssh-keygen -t rsa -f rsa Generating public/private rsa key pair. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your... (9 Replies)
Discussion started by: vishal_ranjan
9 Replies
Login or Register to Ask a Question
SETFIB(1)						    BSD General Commands Manual 						 SETFIB(1)

NAME
setfib -- execute a utility with an altered default network view SYNOPSIS
setfib [-F] fib utility [argument ...] DESCRIPTION
The setfib utility runs another utility with a different routing table. The table number fib will be used by default for all sockets started by this process or descendants. ENVIRONMENT
The PATH environment variable is used to locate the requested utility if the name contains no '/' characters. EXIT STATUS
If utility is invoked, the exit status of setfib is the exit status of utility. An exit status of 126 indicates utility was found, but could not be executed. An exit status of 127 indicates utility could not be found. EXAMPLES
Run netstat(1) to view the second routing table. setfib -F 1 netstat -rn or setfib 1 netstat -rn or setfib -1 netstat -rn SEE ALSO
setfib(2), setsockopt(2) STANDARDS
The setfib utility is a FreeBSD specific extension. However, many UNIX-like systems have an equivalent function. HISTORY
The setfib utility appeared in FreeBSD 7.1. BSD
October 20, 2008 BSD