TIPC

==================ubuntu=====================
sudo apt-get update
sudo apt-get install iproute2

tipc [ OPTIONS ] COMMAND ARGUMENTS
COMMAND := { bearer | link | media | nametable | node | socket }
OPTIONS := { -h[help] }

=================centos======================
yum install tipcutils

[root@localhost ~]# tipc-config
Usage: 
       tipc-config command [command ...]
  
  valid commands:
  -addr [=]                            Get/set node address
  -b    [=]                       Get bearers
  -bd    =                        Disable bearer
  -be    =[/[/]]]  Enable bearer
  -dest  =                             Command destination node
  -help                                      This usage list
  -i                                         Interactive set operations
  -l    [=|]                Get links to domain
  -log  [=]                            Dump/resize log
  -lp    =||/ Set link priority
  -ls   [=]                         Get link statistics
  -lsr   =                          Reset link statistics
  -lt    =||/ Set link tolerance
  -lw    =||/ Set link window
  -m                                         Get media
  -max_ports    [=]                   Get/set max number of ports
  -max_publ     [=]                   Get/set max publications
  -max_subscr   [=]                   Get/set max subscriptions
  -mng  [=enable|disable]                    Get/set remote management
  -n    [=]                          Get nodes in domain
  -netid[=]                           Get/set network id
  -nt   [=[,][,[,]]]   Get name table
        where = types|names|ports|all
  -p                                         Get port info
  -s                                         Get TIPC status info
  -v                                         Verbose output
  -V                                         Get tipc-config version info
==============================================
yum install kernel-devel-$(uname -r)
查看已安装的kernel-devel
[root@localhost dev]# uname -a ; rpm -qa kernel\* | sort
Linux localhost.localdomain 3.10.0-1062.el7.x86_64 #1 SMP Wed Aug 7 18:08:02 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
kernel-3.10.0-1062.el7.x86_64
kernel-devel-3.10.0-1062.1.2.el7.x86_64
kernel-devel-3.10.0-1062.el7.x86_64
kernel-headers-3.10.0-1062.1.2.el7.x86_64

cd /usr/src/kernels/3.10.0-1062.el7.x86_64

modprobe tipc

==============================================
https://github.com/TIPC/tipcutils
yum -y install automake
cd tipcutils
./bootstrap
./configure
make
 

你可能感兴趣的:(TIPC,网络通信)