: Displays active network connections (similar to netstat ). routeShow : Displays the IP routing table.
| Command | Description | |---------|-------------| | ifconfig | Show network interface config | | ifAddrSet <ifname>, <ip> | Set IP address (e.g., ifAddrSet "fei0", 192.168.1.10 ) | | routeShow | Show routing table | | ping <ip> | Send ICMP echo | | inetStatShow | Show all TCP/UDP connections | | arpShow | Show ARP cache | | tftpGet <host>, <filename>, <dest> | TFTP download | | tftpPut <host>, <src>, <filename> | TFTP upload | vxworks command cheat sheet
Interacting with devices, block storage, and network interfaces is common. : Displays active network connections (similar to netstat )
: Spawns a new task. It accepts up to 9 arguments with a default priority of 100. ts taskId : Suspends a specific task by its ID. tr taskId : Resumes a suspended task. td taskId : Deletes a task immediately. : Spawns a new task
| Command | Description | |---------|-------------| | rtpSpawn "path" [args] | Spawn an RTP process | | rtpList | Show running RTPs | | rtpDelete <pid> | Delete an RTP | | rtpInfo <pid> | Show RTP info | | rtpSuspend <pid> | Suspend RTP | | rtpResume <pid> | Resume RTP |
| Command | Description | |---------|-------------| | d <address> [,<width>] [,<count>] | Display memory (width: b, w, l). Example: d 0x100000, l, 16 | | dasm <address> [,<count>] | Disassemble from address | | m <address> <value> | Modify memory (write byte/word/long) | | fill <address>, <len>, <value> | Fill memory region with value | | copy <src>, <dest>, <len> | Copy memory | | cmp <addr1>, <addr2>, <len> | Compare two memory regions | | show <symbolName> | Show value of global symbol |