Reputation: 5972
I have some Vxworks
embedded os and I want to check the netstat
.
This is what I tried:
-> inetstatShow
And the output is:
C interp: unknown symbol name 'inetstatShow'.
How can I have netstat
command in this?
Upvotes: 0
Views: 3808
Reputation: 373
VxWorks supports netstat
command.
-> netstat "-n -a" /* state of sockets */
-> netstat "-n -r" /* routing table */
Upvotes: 1
Reputation: 93476
inetstatShow
is provided by netShow library - you need to be sure that your OS configuration includes netShow, or you can dynamically load it using ld
.
The lkup
function can be used to list symbols that are available to the shell. Try lkup "Show"
to list all symbols that include the sub-string "Show" for example.
Upvotes: 2