arrow-left

All pages
gitbookPowered by GitBook
1 of 3

Loading...

Loading...

Loading...

Broadcom TD3 Packet Slicing feature

circle-info

Note: TD3 platforms support only fixed-byte payload truncation; they always egress 192 bytes after truncation, for both IPv4 and IPv6 traffic

  • The feature is supported only in BCM ADV License

  • Supported in all BCM TD3 devices - Dell5248, 5232, DS2000, DS1000, EC7326, EC7726, EC5835, DS3000

  • A maximum of 4 truncate(packet slicing) config is supported.

  • An interface cannot be configured as both a packet-truncate destination interface and a flow tool port, override-to port

  • An interface cannot be configured as both a packet-truncate destination interface and tunnel interface

hashtag
Reference

hashtag
Example

You can verify the configuration by using the command(s) below:

Command

packet-truncate <id> source-interfaces <Ethernet,Ethernet> destination-interface <Ethernet/port-channel>

no packet-truncate <id>

Description

Truncate packets after offset

Parameters

Offset-value – 192 bytes[fixed]

Mode

Global

#Add truncate
pbnoscli# config terminal
pbnoscli(config)# packet-truncate <id> source-interfaces <Ethernet,Ethernet> destination-interface <Ethernet/port-channel>
pbnoscli(config)# end
pbnoscli# sh running-config 
configure terminal
!
packet-truncate 1 source-interfaces Ethernet3/1,Ethernet4/1 destination-interface port-channel5
!
pbnoscli# 
#Delete truncate
pbnoscli# config terminal
pbnoscli(config)# no packet-truncate <id>
pbnoscli(config)# end

Configuring Packet Slicing

Truncation and Load Balancing

You can use packet truncation, which is a unique capability available only on NVIDIA platforms, to truncate the packets which are sent to the tool. This helps tools reduce the storage capacity needed for saving packets for future analysis. It truncates the packet for the given offset.

circle-exclamation

This feature is only supported on the NVIDIA and Broadcom TD3 platforms

circle-info

The packet will be truncated beginning at the Ethernet header

NVIDIA Packet Slicing featurechevron-right
Broadcom TD3 Packet Slicing featurechevron-right

NVIDIA Packet Slicing feature

circle-info

Packet Slicing "truncate" configuration to be applied only on tool ports

hashtag
Reference

hashtag
Example

You can verify the configuration by using the command(s) below:

Command

truncate <offset value>

no truncate

Description

Truncate packets after offset

Parameters

Offset-value – multiple of 4 within 48 to 4088

Mode

INTERFACE

pbnoscli# configure terminal 
pbnoscli(config)# interface ethernet Ethernet4/1
pbnoscli(config-if)# trunc    
  truncate              Truncate the packet
pbnoscli(config-if)# truncate 64
pbnoscli# show interface npb Ethernet4/1

===================================
Interface : Ethernet4/1       
===================================
Mode           : vlan-aware      
Ingress-vlan   : 6               
Egress-tagging : disable         
Truncate       : 64              

pbnoscli# 
pbnoscli# sh running-config 
configure terminal
!
interface ethernet Ethernet4/1
truncate 64
!
interface mgmt
ip address 10.4.4.53/23 gateway 10.4.4.1
!
pbnoscli#