If you have use tacppds installed in several servers situated in several networks and want join tacppds to bundle, you have to setup multicast routing. There are a lot of documentation on http://www.cisco.com about multicast routing configuration. We are see only several simple examples. For example we have two Ethernet segments which interconnected by Catalyst switch in different vlans, interconnected by Cisco router.
Router configuration:
ip multicast-routing
! first subinterface configuration
interface FastEthernet0/0.2
description First TACPPD VLAN
encapsulation dot1Q 2
ip pim sparse-mode
ip cgmp
! second subinterface configuration
interface FastEthernet0/0.3
description Second TACPPD VLAN
encapsulation dot1Q 3
ip pim sparse-mode
ip cgmp
ip pim rp-address your.router.ip.address
Catalyst switch configuration:
no ip igmp snooping
! trunk ethernet interface
interface FastEthernet 0/1
description Router trunk connect
switchport mode trunk
! first ethernet interface
interface FastEthernet0/5
description First TACPPD server host
switchport access vlan 2
! second ethernet interface
interface FastEthernet0/6
description Second TACPPD server host
switchport access vlan 3
Remember, that you have to use multicast TTL values more than 1 if you will use multicast routing, every hop require add 1 to TTL. For our example set TTL to 2.