Skip to content

mvrf_avoid_snmp_yml_config: made changes to pass SNMP config from con…#4057

Merged
qiluo-msft merged 2 commits intosonic-net:masterfrom
kannankvs:mvrf_avoid_snmp_yml_config
Jan 29, 2020
Merged

mvrf_avoid_snmp_yml_config: made changes to pass SNMP config from con…#4057
qiluo-msft merged 2 commits intosonic-net:masterfrom
kannankvs:mvrf_avoid_snmp_yml_config

Conversation

@kannankvs
Copy link
Collaborator

This PR is based on the new comments given for the already merged PR3586.
By design, snmp.yml provides some static configurations that are not supported in ConfigDB (redis).
Hence, the configurations that got added in snmp.yml as part of PR3586 is being removed.
Instead, the configurations are directly read from ConfigDB and rendered in snmpd.conf.j2 inside snmp docker container to generate the snmpd.conf directly without using snmp.yml.
These are tested by configuring the snmpagentaddress and snmptrap commands.
@qiluo-msft : Request you to kindly review, approve, merge & cherrypick to 201911.

@kannankvs
Copy link
Collaborator Author

retest this please

{% endif %}
{% if SNMP_AGENT_ADDRESS_CONFIG %}
{% for (agentip, port, vrf) in SNMP_AGENT_ADDRESS_CONFIG %}
agentAddress {{ agentip }}{% if port %}:{{ port }}{% endif %}{% if vrf %}%{{ vrf }}{% endif %}{{ "" }}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{{ "" }} [](start = 94, length = 8)

Why you need this?

Could you give some samples of input and render results?

Copy link
Collaborator Author

@kannankvs kannankvs Jan 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@qiluo-msft : I assume you mean the last {{ "" }}.
I am using the following example configuration in config_db,

    "SNMP_AGENT_ADDRESS_CONFIG": {
        "1.1.1.1||": {},
        "2.2.2.2||": {}
    },

Without this {{ "" }}, if we configure more than one agentAddress, they all come in same line in snmpd.conf.
Example: In snmpd.conf without this {{ "" }} as follows.

agentAddress 1.1.1.1agentAddress 2.2.2.2

With this {{ "" }}, a new line is inserted between agentAddress.
Example: In snmpd.conf with this {{ "" }} as follows.

agentAddress 1.1.1.1
agentAddress 2.2.2.2

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not true. Could you please test again? I tested and got the expected multiple line output.


In reply to: 371142042 [](ancestors = 371142042)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@qiluo-msft : My previous example was from my device only. I am not sure why you are not seeing same result as mine. I used the commands (given below) to configure. You can try once using the commands as well.

I redid the configuration and the result is given below.

root@sonic-s6100-07:~# config snmpagentaddress add 1.1.1.1
root@sonic-s6100-07:~# config snmpagentaddress add 2.2.2.2

root@sonic-s6100-07:~# docker exec -it snmp bash
root@sonic-s6100-07:/# cat /etc/snmp/snmpd.conf | grep agentAdd
agentAddress 1.1.1.1agentAddress 2.2.2.2
root@sonic-s6100-07:/# 

Above is the output from my device without that {{ "" }}. If you are 100% sure that {{ "" }} is not required, I can remove it.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I test the image built in this PR https://sonic-jenkins.westus2.cloudapp.azure.com/job/mellanox/job/buildimage-mlnx-all-pr/2154/artifact/target/sonic-mellanox.bin. Please check if the test is valid and recheck yours?

admin@sonic:~$ docker exec -it snmp bash
root@sonic:/# redis-cli -n 4
127.0.0.1:6379[4]> hset "SNMP_AGENT_ADDRESS_CONFIG|1.1.1.1||" "" ""
(integer) 1
127.0.0.1:6379[4]> hset "SNMP_AGENT_ADDRESS_CONFIG|2.2.2.2||" "" ""
(integer) 1
127.0.0.1:6379[4]> exit
root@sonic:/# sonic-cfggen -d -y /etc/sonic/snmp.yml -t /usr/share/sonic/templates/snmpd.conf.j2
###############################################################################
# Managed by sonic-config-engine
###############################################################################
#
# EXAMPLE.conf:
#   An example configuration file for configuring the Net-SNMP agent ('snmpd')
#   See the 'snmpd.conf(5)' man page for details
#
#  Some entries are deliberately commented out, and will need to be explicitly activated
#
###############################################################################
#
#  AGENT BEHAVIOUR
#

#  Listen for connections on all ip addresses, including eth0, ipv4 lo
#
agentAddress 1.1.1.1
agentAddress 2.2.2.2

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@qiluo-msft : Unfortunately I dont have any mellanox device to test the mellanox bin. I tested in Dell device that uses sonic-broadcom.bin. I am using Jan 22 image from Jenkins.
Doubt: If we have this {{ "" }}. will it create any issue? Since it always gives error in my setup, can we retain it and merge?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I double checked my test case and it is not true.

Copy link
Collaborator

@qiluo-msft qiluo-msft left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor issues

@kannankvs
Copy link
Collaborator Author

Minor issues

@qiluo-msft : Is this a different comment? Can you please explain?

@qiluo-msft qiluo-msft merged commit 7cb6300 into sonic-net:master Jan 29, 2020
@kannankvs kannankvs deleted the mvrf_avoid_snmp_yml_config branch January 29, 2020 05:05
abdosi pushed a commit that referenced this pull request Feb 4, 2020
#4057)

* mvrf_avoid_snmp_yml_config: made changes to pass SNMP config from confiDB to snmpd.conf without using snmp.yml
* added a missing if condition
pphuchar pushed a commit to SONIC-DEV/sonic-buildimage that referenced this pull request Mar 9, 2020
sonic-net#4057)

* mvrf_avoid_snmp_yml_config: made changes to pass SNMP config from confiDB to snmpd.conf without using snmp.yml
* added a missing if condition
tiantianlv pushed a commit to SONIC-DEV/sonic-buildimage that referenced this pull request Apr 24, 2020
sonic-net#4057)

* mvrf_avoid_snmp_yml_config: made changes to pass SNMP config from confiDB to snmpd.conf without using snmp.yml
* added a missing if condition
mssonicbld added a commit that referenced this pull request Oct 14, 2025
…atically (#23557)

#### Why I did it
src/sonic-utilities
```
* e59bbfc - (HEAD -> master, origin/master, origin/HEAD) Fixing state_db not having delete_field attribute causing a crash when DPUs in bad state (#4064) (9 hours ago) [rameshraghupathy]
* 9386963 - Improve set/get cmdline to support uefi (#4062) (3 days ago) [Hua Liu]
* 3a7d0b4 - [dhcp_relay] Update show cli sample for dhcp_relay (#4070) (4 days ago) [Balakrishna-goshika]
* 89c9aef - FEC histogram with ability to clear stat (#4075) (7 days ago) [Prince George]
* b247e93 - Skip speed validation for chassis. (#4076) (10 days ago) [Xincun Li]
* 70926dd - [FRR]Adding additional FRR dumps (#4073) (11 days ago) [Sudharsan Dhamal Gopalarathnam]
* d7c16c3 - Fix incorrect output format for pre-fec ber in sfpshow pm (#4066) (2 weeks ago) [Changrong Wu]
* 80a20e7 - [doc][dhcp_server] Update cli doc for dhcp_server #4069 (3 weeks ago) [Balakrishna-goshika]
* c1843fa - Issue #22759: Prevent CLI from adding invalid routed interfaces (#3901) (3 weeks ago) [Anders Linn]
* 7c5378e - Issue 23798: Wrap getpass.getpass in a signal handler to avoid SIGTTOU (#4061) (3 weeks ago) [Anders Linn]
* 28dfb29 - Fix issue that dynamic/static threshold 0 can not be configured using mmuconfig (#4049) (4 weeks ago) [Stephen Sun]
* e276765 - Support multi-asic in gcu.py (#4057) (5 weeks ago) [ganglv]
* d2c697f - Add sonic-error-report tool for structured error reporting (#4037) (5 weeks ago) [Dawei Huang]
* ed5afd8 - Add python wheels for GCU (#4042) (5 weeks ago) [ganglv]
* 98e4916 - Add Arista-7060X6-64PE-B-O128S2, Arista-7060X6-16PE-384C-B-O128S2 to GCU (#4055) (5 weeks ago) [rick-arista]
* 9e9a65b - Issue #22420: Modify 'config route add' command not to include empty elements (#12) (#3862) (5 weeks ago) [Anders Linn]
* 0edb592 - Mux cable show config command Added prober_type and fixed one format (#4013) (5 weeks ago) [harjotsinghpawra]
* 2657ee3 - Fixed cli command for ECN config on voq switch to set the WRED_PROFILE for all Voqs (#4029) (6 weeks ago) [saksarav-nokia]
* d1c9d1a - [show][config] Add CLI support for configurable drop monitor feature (#3756) (6 weeks ago) [HP]
* 7baa75b - [spm] Rename entry tag variable to docker_image_reference (#4019) (6 weeks ago) [DavidZagury]
* 63364a3 - Add BlockingMode for Reboot script (#3958) (6 weeks ago) [Litao Yu]
* ee8113f - Support for platforms based on Clounix net device (#3970) (6 weeks ago) [LongWuuu]
* f53a5c1 - [config show]BGP Suppress fib pending config and display for multi-asic (#3948) (7 weeks ago) [vganesan-nokia]
* b3de0af - Add Arista 7800 platforms to GCU validator (#4038) (7 weeks ago) [Xincun Li]
* 13a0cb2 - Add check_pfc_storm_active() to fast-reboot script (#3969) (7 weeks ago) [Dawei Huang]
* f45d896 - [smartswitch] Update get_gnmi_port() based on smartswitch config updates (#4041) (7 weeks ago) [Vasundhara Volam]
* ea33ef3 - [nvidia-bluefield] Add CLI for packet-drop and config-record (#4002) (8 weeks ago) [Vivek]
* ffc891d - [dhcp_server] Add CLI sample for dhcp_server (#4033) (8 weeks ago) [Yaqiang Zhu]
* 1e9d04c - Update doc to including dhcp_server ipv4 counter related CLI (#4028) (9 weeks ago) [Yaqiang Zhu]
* 19594b9 - Fix show int transceiver EEPROM crash for for Backplane cartridge + enhance EEPROM CLI output (#4020) (9 weeks ago) [mihirpat1]
* 0f8ac9b - Added MAX pre-fec_ber for FEC counter (#4027) (9 weeks ago) [Prince George]
* 732dc09 - Added json support for show platform temperature (#3874) (9 weeks ago) [Vinod Kumar]
* bacff45 - Add Arista 7800 platforms to GCU validator (#4030) (9 weeks ago) [Xincun Li]
* c63e9ea - [trim]: Add Packet Trimming Drop Counters CLI (#3993) (9 weeks ago) [Nazarii Hnydyn]
* 50df9ea - Adapt 'show muxcable tunnel-route' for prefix route based mux neighbors (#4007) (9 weeks ago) [manamand2020]
* 868189c - Pr json support queue and priority-group watermark and persistent-watermark (#3875) (9 weeks ago) [Vinod Kumar]
* 5347757 - Revert "[SPM] Rename the variable tag to docker-image-reference (#3998)" (#4024) (9 weeks ago) [Jianquan Ye]
* 1418f21 - Added json support intfutil (#3906) (10 weeks ago) [Vinod Kumar]
* ec01962 - sfputil and sfpshow eeprom and DOM CLI enhancement to display data for all CMIS transceivers (#4010) (10 weeks ago) [mihirpat1]
* c0838d7 - CLI for Configuring PFC Historical Statistics (#3779) (2 months ago) [Peter Bailey]
* d623c25 - [Mellanox][Smartswitch]Added dpu status output to dump (#3959) (2 months ago) [Gagan Punathil Ellath]
* a3101ea - Fix for #23205 [Smartswitch] Issues caused due to introduction of the chassisd/sonic-utiltiies changes for consecutive admin state changes (#3984) (2 months ago) [rameshraghupathy]
* d3bc688 - CLI addition for PFC counters --history (#3778) (2 months ago) [Peter Bailey]
* 3282ab3 - DOM for flat memory transceiver modules (#3950) (2 months ago) [Ariz Zubair]
* 6f1a794 - Add queuestat changes for aggregate VOQ counters (#3617) (2 months ago) [Vivek Verma]
* d86b2b6 - g[sfputil debug] Fix issue: do not check output status when CMIS version is lower than 5.0 (#3938) (2 months ago) [Junchao-Mellanox]
* 252a643 - [SPM] Rename the variable tag to docker-image-reference (#3998) (2 months ago) [DavidZagury]
```
#### How I did it
#### How to verify it
#### Description for the changelog
mssonicbld added a commit that referenced this pull request Oct 26, 2025
…atically (#24272)

#### Why I did it
src/sonic-utilities
```
* 8d2bc08 - (HEAD -> master, origin/master, origin/HEAD) Add pfc_stat_history support (#4102) (6 hours ago) [Xincun Li]
* 7a046d6 - [trim]: Fix GCU trimming eligibility modification (#4087) (28 hours ago) [Nazarii Hnydyn]
* f4e5de3 - [GCU] Handle duplicate array entries and auto-create empty tables during patch application (#4095) (2 days ago) [Xincun Li]
* a131061 - [fast/warm-reboot] Fix timers query (#4022) (2 days ago) [Stepan Blyshchak]
* 3bf5c27 - [Mellanox] Update generate_dump to include SDK sysfs files (#4071) (2 days ago) [Noa Or]
* d4eb8ec - [portstat] Add FEC FLR statistics support to port counters (#4054) (3 days ago) [Apoorv Sachan]
* 55b665b - Secureboot: Image signing verification enhancements (#3989) (7 days ago) [Brad House - NextHop]
* e59bbfc - Fixing state_db not having delete_field attribute causing a crash when DPUs in bad state (#4064) (12 days ago) [rameshraghupathy]
* 9386963 - Improve set/get cmdline to support uefi (#4062) (2 weeks ago) [Hua Liu]
* 3a7d0b4 - [dhcp_relay] Update show cli sample for dhcp_relay (#4070) (2 weeks ago) [Balakrishna-goshika]
* 89c9aef - FEC histogram with ability to clear stat (#4075) (3 weeks ago) [Prince George]
* b247e93 - Skip speed validation for chassis. (#4076) (3 weeks ago) [Xincun Li]
* 70926dd - [FRR]Adding additional FRR dumps (#4073) (3 weeks ago) [Sudharsan Dhamal Gopalarathnam]
* d7c16c3 - Fix incorrect output format for pre-fec ber in sfpshow pm (#4066) (4 weeks ago) [Changrong Wu]
* 80a20e7 - [doc][dhcp_server] Update cli doc for dhcp_server #4069 (4 weeks ago) [Balakrishna-goshika]
* c1843fa - Issue #22759: Prevent CLI from adding invalid routed interfaces (#3901) (4 weeks ago) [Anders Linn]
* 7c5378e - Issue 23798: Wrap getpass.getpass in a signal handler to avoid SIGTTOU (#4061) (5 weeks ago) [Anders Linn]
* 28dfb29 - Fix issue that dynamic/static threshold 0 can not be configured using mmuconfig (#4049) (5 weeks ago) [Stephen Sun]
* e276765 - Support multi-asic in gcu.py (#4057) (6 weeks ago) [ganglv]
* d2c697f - Add sonic-error-report tool for structured error reporting (#4037) (6 weeks ago) [Dawei Huang]
* ed5afd8 - Add python wheels for GCU (#4042) (6 weeks ago) [ganglv]
* 98e4916 - Add Arista-7060X6-64PE-B-O128S2, Arista-7060X6-16PE-384C-B-O128S2 to GCU (#4055) (6 weeks ago) [rick-arista]
* 9e9a65b - Issue #22420: Modify 'config route add' command not to include empty elements (#12) (#3862) (7 weeks ago) [Anders Linn]
* 0edb592 - Mux cable show config command Added prober_type and fixed one format (#4013) (7 weeks ago) [harjotsinghpawra]
* 2657ee3 - Fixed cli command for ECN config on voq switch to set the WRED_PROFILE for all Voqs (#4029) (7 weeks ago) [saksarav-nokia]
* d1c9d1a - [show][config] Add CLI support for configurable drop monitor feature (#3756) (7 weeks ago) [HP]
* 7baa75b - [spm] Rename entry tag variable to docker_image_reference (#4019) (8 weeks ago) [DavidZagury]
* 63364a3 - Add BlockingMode for Reboot script (#3958) (8 weeks ago) [Litao Yu]
* ee8113f - Support for platforms based on Clounix net device (#3970) (8 weeks ago) [LongWuuu]
* f53a5c1 - [config show]BGP Suppress fib pending config and display for multi-asic (#3948) (8 weeks ago) [vganesan-nokia]
* b3de0af - Add Arista 7800 platforms to GCU validator (#4038) (9 weeks ago) [Xincun Li]
* 13a0cb2 - Add check_pfc_storm_active() to fast-reboot script (#3969) (9 weeks ago) [Dawei Huang]
* f45d896 - [smartswitch] Update get_gnmi_port() based on smartswitch config updates (#4041) (9 weeks ago) [Vasundhara Volam]
* ea33ef3 - [nvidia-bluefield] Add CLI for packet-drop and config-record (#4002) (9 weeks ago) [Vivek]
* ffc891d - [dhcp_server] Add CLI sample for dhcp_server (#4033) (10 weeks ago) [Yaqiang Zhu]
* 1e9d04c - Update doc to including dhcp_server ipv4 counter related CLI (#4028) (2 months ago) [Yaqiang Zhu]
* 19594b9 - Fix show int transceiver EEPROM crash for for Backplane cartridge + enhance EEPROM CLI output (#4020) (2 months ago) [mihirpat1]
* 0f8ac9b - Added MAX pre-fec_ber for FEC counter (#4027) (2 months ago) [Prince George]
* 732dc09 - Added json support for show platform temperature (#3874) (2 months ago) [Vinod Kumar]
* bacff45 - Add Arista 7800 platforms to GCU validator (#4030) (2 months ago) [Xincun Li]
* c63e9ea - [trim]: Add Packet Trimming Drop Counters CLI (#3993) (3 months ago) [Nazarii Hnydyn]
* 50df9ea - Adapt 'show muxcable tunnel-route' for prefix route based mux neighbors (#4007) (3 months ago) [manamand2020]
* 868189c - Pr json support queue and priority-group watermark and persistent-watermark (#3875) (3 months ago) [Vinod Kumar]
* 5347757 - Revert "[SPM] Rename the variable tag to docker-image-reference (#3998)" (#4024) (3 months ago) [Jianquan Ye]
* 1418f21 - Added json support intfutil (#3906) (3 months ago) [Vinod Kumar]
* ec01962 - sfputil and sfpshow eeprom and DOM CLI enhancement to display data for all CMIS transceivers (#4010) (3 months ago) [mihirpat1]
* c0838d7 - CLI for Configuring PFC Historical Statistics (#3779) (3 months ago) [Peter Bailey]
* d623c25 - [Mellanox][Smartswitch]Added dpu status output to dump (#3959) (3 months ago) [Gagan Punathil Ellath]
* a3101ea - Fix for #23205 [Smartswitch] Issues caused due to introduction of the chassisd/sonic-utiltiies changes for consecutive admin state changes (#3984) (3 months ago) [rameshraghupathy]
* d3bc688 - CLI addition for PFC counters --history (#3778) (3 months ago) [Peter Bailey]
* 3282ab3 - DOM for flat memory transceiver modules (#3950) (3 months ago) [Ariz Zubair]
* 6f1a794 - Add queuestat changes for aggregate VOQ counters (#3617) (3 months ago) [Vivek Verma]
* d86b2b6 - g[sfputil debug] Fix issue: do not check output status when CMIS version is lower than 5.0 (#3938) (3 months ago) [Junchao-Mellanox]
* 252a643 - [SPM] Rename the variable tag to docker-image-reference (#3998) (3 months ago) [DavidZagury]
```
#### How I did it
#### How to verify it
#### Description for the changelog
FengPan-Frank pushed a commit to FengPan-Frank/sonic-buildimage that referenced this pull request Dec 4, 2025
…atically (sonic-net#23557)

#### Why I did it
src/sonic-utilities
```
* e59bbfc - (HEAD -> master, origin/master, origin/HEAD) Fixing state_db not having delete_field attribute causing a crash when DPUs in bad state (sonic-net#4064) (9 hours ago) [rameshraghupathy]
* 9386963 - Improve set/get cmdline to support uefi (sonic-net#4062) (3 days ago) [Hua Liu]
* 3a7d0b4 - [dhcp_relay] Update show cli sample for dhcp_relay (sonic-net#4070) (4 days ago) [Balakrishna-goshika]
* 89c9aef - FEC histogram with ability to clear stat (sonic-net#4075) (7 days ago) [Prince George]
* b247e93 - Skip speed validation for chassis. (sonic-net#4076) (10 days ago) [Xincun Li]
* 70926dd - [FRR]Adding additional FRR dumps (sonic-net#4073) (11 days ago) [Sudharsan Dhamal Gopalarathnam]
* d7c16c3 - Fix incorrect output format for pre-fec ber in sfpshow pm (sonic-net#4066) (2 weeks ago) [Changrong Wu]
* 80a20e7 - [doc][dhcp_server] Update cli doc for dhcp_server sonic-net#4069 (3 weeks ago) [Balakrishna-goshika]
* c1843fa - Issue sonic-net#22759: Prevent CLI from adding invalid routed interfaces (sonic-net#3901) (3 weeks ago) [Anders Linn]
* 7c5378e - Issue 23798: Wrap getpass.getpass in a signal handler to avoid SIGTTOU (sonic-net#4061) (3 weeks ago) [Anders Linn]
* 28dfb29 - Fix issue that dynamic/static threshold 0 can not be configured using mmuconfig (sonic-net#4049) (4 weeks ago) [Stephen Sun]
* e276765 - Support multi-asic in gcu.py (sonic-net#4057) (5 weeks ago) [ganglv]
* d2c697f - Add sonic-error-report tool for structured error reporting (sonic-net#4037) (5 weeks ago) [Dawei Huang]
* ed5afd8 - Add python wheels for GCU (sonic-net#4042) (5 weeks ago) [ganglv]
* 98e4916 - Add Arista-7060X6-64PE-B-O128S2, Arista-7060X6-16PE-384C-B-O128S2 to GCU (sonic-net#4055) (5 weeks ago) [rick-arista]
* 9e9a65b - Issue sonic-net#22420: Modify 'config route add' command not to include empty elements (sonic-net#12) (sonic-net#3862) (5 weeks ago) [Anders Linn]
* 0edb592 - Mux cable show config command Added prober_type and fixed one format (sonic-net#4013) (5 weeks ago) [harjotsinghpawra]
* 2657ee3 - Fixed cli command for ECN config on voq switch to set the WRED_PROFILE for all Voqs (sonic-net#4029) (6 weeks ago) [saksarav-nokia]
* d1c9d1a - [show][config] Add CLI support for configurable drop monitor feature (sonic-net#3756) (6 weeks ago) [HP]
* 7baa75b - [spm] Rename entry tag variable to docker_image_reference (sonic-net#4019) (6 weeks ago) [DavidZagury]
* 63364a3 - Add BlockingMode for Reboot script (sonic-net#3958) (6 weeks ago) [Litao Yu]
* ee8113f - Support for platforms based on Clounix net device (sonic-net#3970) (6 weeks ago) [LongWuuu]
* f53a5c1 - [config show]BGP Suppress fib pending config and display for multi-asic (sonic-net#3948) (7 weeks ago) [vganesan-nokia]
* b3de0af - Add Arista 7800 platforms to GCU validator (sonic-net#4038) (7 weeks ago) [Xincun Li]
* 13a0cb2 - Add check_pfc_storm_active() to fast-reboot script (sonic-net#3969) (7 weeks ago) [Dawei Huang]
* f45d896 - [smartswitch] Update get_gnmi_port() based on smartswitch config updates (sonic-net#4041) (7 weeks ago) [Vasundhara Volam]
* ea33ef3 - [nvidia-bluefield] Add CLI for packet-drop and config-record (sonic-net#4002) (8 weeks ago) [Vivek]
* ffc891d - [dhcp_server] Add CLI sample for dhcp_server (sonic-net#4033) (8 weeks ago) [Yaqiang Zhu]
* 1e9d04c - Update doc to including dhcp_server ipv4 counter related CLI (sonic-net#4028) (9 weeks ago) [Yaqiang Zhu]
* 19594b9 - Fix show int transceiver EEPROM crash for for Backplane cartridge + enhance EEPROM CLI output (sonic-net#4020) (9 weeks ago) [mihirpat1]
* 0f8ac9b - Added MAX pre-fec_ber for FEC counter (sonic-net#4027) (9 weeks ago) [Prince George]
* 732dc09 - Added json support for show platform temperature (sonic-net#3874) (9 weeks ago) [Vinod Kumar]
* bacff45 - Add Arista 7800 platforms to GCU validator (sonic-net#4030) (9 weeks ago) [Xincun Li]
* c63e9ea - [trim]: Add Packet Trimming Drop Counters CLI (sonic-net#3993) (9 weeks ago) [Nazarii Hnydyn]
* 50df9ea - Adapt 'show muxcable tunnel-route' for prefix route based mux neighbors (sonic-net#4007) (9 weeks ago) [manamand2020]
* 868189c - Pr json support queue and priority-group watermark and persistent-watermark (sonic-net#3875) (9 weeks ago) [Vinod Kumar]
* 5347757 - Revert "[SPM] Rename the variable tag to docker-image-reference (sonic-net#3998)" (sonic-net#4024) (9 weeks ago) [Jianquan Ye]
* 1418f21 - Added json support intfutil (sonic-net#3906) (10 weeks ago) [Vinod Kumar]
* ec01962 - sfputil and sfpshow eeprom and DOM CLI enhancement to display data for all CMIS transceivers (sonic-net#4010) (10 weeks ago) [mihirpat1]
* c0838d7 - CLI for Configuring PFC Historical Statistics (sonic-net#3779) (2 months ago) [Peter Bailey]
* d623c25 - [Mellanox][Smartswitch]Added dpu status output to dump (sonic-net#3959) (2 months ago) [Gagan Punathil Ellath]
* a3101ea - Fix for sonic-net#23205 [Smartswitch] Issues caused due to introduction of the chassisd/sonic-utiltiies changes for consecutive admin state changes (sonic-net#3984) (2 months ago) [rameshraghupathy]
* d3bc688 - CLI addition for PFC counters --history (sonic-net#3778) (2 months ago) [Peter Bailey]
* 3282ab3 - DOM for flat memory transceiver modules (sonic-net#3950) (2 months ago) [Ariz Zubair]
* 6f1a794 - Add queuestat changes for aggregate VOQ counters (sonic-net#3617) (2 months ago) [Vivek Verma]
* d86b2b6 - g[sfputil debug] Fix issue: do not check output status when CMIS version is lower than 5.0 (sonic-net#3938) (2 months ago) [Junchao-Mellanox]
* 252a643 - [SPM] Rename the variable tag to docker-image-reference (sonic-net#3998) (2 months ago) [DavidZagury]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: Feng Pan <fenpan@microsoft.com>
FengPan-Frank pushed a commit to FengPan-Frank/sonic-buildimage that referenced this pull request Dec 4, 2025
…atically (sonic-net#24272)

#### Why I did it
src/sonic-utilities
```
* 8d2bc08 - (HEAD -> master, origin/master, origin/HEAD) Add pfc_stat_history support (sonic-net#4102) (6 hours ago) [Xincun Li]
* 7a046d6 - [trim]: Fix GCU trimming eligibility modification (sonic-net#4087) (28 hours ago) [Nazarii Hnydyn]
* f4e5de3 - [GCU] Handle duplicate array entries and auto-create empty tables during patch application (sonic-net#4095) (2 days ago) [Xincun Li]
* a131061 - [fast/warm-reboot] Fix timers query (sonic-net#4022) (2 days ago) [Stepan Blyshchak]
* 3bf5c27 - [Mellanox] Update generate_dump to include SDK sysfs files (sonic-net#4071) (2 days ago) [Noa Or]
* d4eb8ec - [portstat] Add FEC FLR statistics support to port counters (sonic-net#4054) (3 days ago) [Apoorv Sachan]
* 55b665b - Secureboot: Image signing verification enhancements (sonic-net#3989) (7 days ago) [Brad House - NextHop]
* e59bbfc - Fixing state_db not having delete_field attribute causing a crash when DPUs in bad state (sonic-net#4064) (12 days ago) [rameshraghupathy]
* 9386963 - Improve set/get cmdline to support uefi (sonic-net#4062) (2 weeks ago) [Hua Liu]
* 3a7d0b4 - [dhcp_relay] Update show cli sample for dhcp_relay (sonic-net#4070) (2 weeks ago) [Balakrishna-goshika]
* 89c9aef - FEC histogram with ability to clear stat (sonic-net#4075) (3 weeks ago) [Prince George]
* b247e93 - Skip speed validation for chassis. (sonic-net#4076) (3 weeks ago) [Xincun Li]
* 70926dd - [FRR]Adding additional FRR dumps (sonic-net#4073) (3 weeks ago) [Sudharsan Dhamal Gopalarathnam]
* d7c16c3 - Fix incorrect output format for pre-fec ber in sfpshow pm (sonic-net#4066) (4 weeks ago) [Changrong Wu]
* 80a20e7 - [doc][dhcp_server] Update cli doc for dhcp_server sonic-net#4069 (4 weeks ago) [Balakrishna-goshika]
* c1843fa - Issue sonic-net#22759: Prevent CLI from adding invalid routed interfaces (sonic-net#3901) (4 weeks ago) [Anders Linn]
* 7c5378e - Issue 23798: Wrap getpass.getpass in a signal handler to avoid SIGTTOU (sonic-net#4061) (5 weeks ago) [Anders Linn]
* 28dfb29 - Fix issue that dynamic/static threshold 0 can not be configured using mmuconfig (sonic-net#4049) (5 weeks ago) [Stephen Sun]
* e276765 - Support multi-asic in gcu.py (sonic-net#4057) (6 weeks ago) [ganglv]
* d2c697f - Add sonic-error-report tool for structured error reporting (sonic-net#4037) (6 weeks ago) [Dawei Huang]
* ed5afd8 - Add python wheels for GCU (sonic-net#4042) (6 weeks ago) [ganglv]
* 98e4916 - Add Arista-7060X6-64PE-B-O128S2, Arista-7060X6-16PE-384C-B-O128S2 to GCU (sonic-net#4055) (6 weeks ago) [rick-arista]
* 9e9a65b - Issue sonic-net#22420: Modify 'config route add' command not to include empty elements (sonic-net#12) (sonic-net#3862) (7 weeks ago) [Anders Linn]
* 0edb592 - Mux cable show config command Added prober_type and fixed one format (sonic-net#4013) (7 weeks ago) [harjotsinghpawra]
* 2657ee3 - Fixed cli command for ECN config on voq switch to set the WRED_PROFILE for all Voqs (sonic-net#4029) (7 weeks ago) [saksarav-nokia]
* d1c9d1a - [show][config] Add CLI support for configurable drop monitor feature (sonic-net#3756) (7 weeks ago) [HP]
* 7baa75b - [spm] Rename entry tag variable to docker_image_reference (sonic-net#4019) (8 weeks ago) [DavidZagury]
* 63364a3 - Add BlockingMode for Reboot script (sonic-net#3958) (8 weeks ago) [Litao Yu]
* ee8113f - Support for platforms based on Clounix net device (sonic-net#3970) (8 weeks ago) [LongWuuu]
* f53a5c1 - [config show]BGP Suppress fib pending config and display for multi-asic (sonic-net#3948) (8 weeks ago) [vganesan-nokia]
* b3de0af - Add Arista 7800 platforms to GCU validator (sonic-net#4038) (9 weeks ago) [Xincun Li]
* 13a0cb2 - Add check_pfc_storm_active() to fast-reboot script (sonic-net#3969) (9 weeks ago) [Dawei Huang]
* f45d896 - [smartswitch] Update get_gnmi_port() based on smartswitch config updates (sonic-net#4041) (9 weeks ago) [Vasundhara Volam]
* ea33ef3 - [nvidia-bluefield] Add CLI for packet-drop and config-record (sonic-net#4002) (9 weeks ago) [Vivek]
* ffc891d - [dhcp_server] Add CLI sample for dhcp_server (sonic-net#4033) (10 weeks ago) [Yaqiang Zhu]
* 1e9d04c - Update doc to including dhcp_server ipv4 counter related CLI (sonic-net#4028) (2 months ago) [Yaqiang Zhu]
* 19594b9 - Fix show int transceiver EEPROM crash for for Backplane cartridge + enhance EEPROM CLI output (sonic-net#4020) (2 months ago) [mihirpat1]
* 0f8ac9b - Added MAX pre-fec_ber for FEC counter (sonic-net#4027) (2 months ago) [Prince George]
* 732dc09 - Added json support for show platform temperature (sonic-net#3874) (2 months ago) [Vinod Kumar]
* bacff45 - Add Arista 7800 platforms to GCU validator (sonic-net#4030) (2 months ago) [Xincun Li]
* c63e9ea - [trim]: Add Packet Trimming Drop Counters CLI (sonic-net#3993) (3 months ago) [Nazarii Hnydyn]
* 50df9ea - Adapt 'show muxcable tunnel-route' for prefix route based mux neighbors (sonic-net#4007) (3 months ago) [manamand2020]
* 868189c - Pr json support queue and priority-group watermark and persistent-watermark (sonic-net#3875) (3 months ago) [Vinod Kumar]
* 5347757 - Revert "[SPM] Rename the variable tag to docker-image-reference (sonic-net#3998)" (sonic-net#4024) (3 months ago) [Jianquan Ye]
* 1418f21 - Added json support intfutil (sonic-net#3906) (3 months ago) [Vinod Kumar]
* ec01962 - sfputil and sfpshow eeprom and DOM CLI enhancement to display data for all CMIS transceivers (sonic-net#4010) (3 months ago) [mihirpat1]
* c0838d7 - CLI for Configuring PFC Historical Statistics (sonic-net#3779) (3 months ago) [Peter Bailey]
* d623c25 - [Mellanox][Smartswitch]Added dpu status output to dump (sonic-net#3959) (3 months ago) [Gagan Punathil Ellath]
* a3101ea - Fix for sonic-net#23205 [Smartswitch] Issues caused due to introduction of the chassisd/sonic-utiltiies changes for consecutive admin state changes (sonic-net#3984) (3 months ago) [rameshraghupathy]
* d3bc688 - CLI addition for PFC counters --history (sonic-net#3778) (3 months ago) [Peter Bailey]
* 3282ab3 - DOM for flat memory transceiver modules (sonic-net#3950) (3 months ago) [Ariz Zubair]
* 6f1a794 - Add queuestat changes for aggregate VOQ counters (sonic-net#3617) (3 months ago) [Vivek Verma]
* d86b2b6 - g[sfputil debug] Fix issue: do not check output status when CMIS version is lower than 5.0 (sonic-net#3938) (3 months ago) [Junchao-Mellanox]
* 252a643 - [SPM] Rename the variable tag to docker-image-reference (sonic-net#3998) (3 months ago) [DavidZagury]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: Feng Pan <fenpan@microsoft.com>
mssonicbld added a commit that referenced this pull request Dec 21, 2025
…lly (#24914)

#### Why I did it
src/sonic-swss
```
* dd9cf3d7 - (HEAD -> master, origin/master, origin/HEAD) [orchagent] Event-based Retry Strategy (#3699) (27 hours ago) [Yijiao Qin]
* 9d38663e - [chassis] Fixed bug in Fabric monitor capacity (#4057) (30 hours ago) [saksarav-nokia]
* 8aca780a - [ssw][ha] add ACTION_COUNTER to acl table type (#4068) (34 hours ago) [Jing Zhang]
* 8e0a0e7d - Use the correct slave container for the branch (#4074) (34 hours ago) [Saikrishna Arcot]
```
#### How I did it
#### How to verify it
#### Description for the changelog
xwjiang-ms pushed a commit to xwjiang-ms/sonic-buildimage that referenced this pull request Dec 22, 2025
…lly (sonic-net#24914)

#### Why I did it
src/sonic-swss
```
* dd9cf3d7 - (HEAD -> master, origin/master, origin/HEAD) [orchagent] Event-based Retry Strategy (sonic-net#3699) (27 hours ago) [Yijiao Qin]
* 9d38663e - [chassis] Fixed bug in Fabric monitor capacity (sonic-net#4057) (30 hours ago) [saksarav-nokia]
* 8aca780a - [ssw][ha] add ACTION_COUNTER to acl table type (sonic-net#4068) (34 hours ago) [Jing Zhang]
* 8e0a0e7d - Use the correct slave container for the branch (sonic-net#4074) (34 hours ago) [Saikrishna Arcot]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: xiaweijiang <xiaweijiang@microsoft.com>
jasonbridges pushed a commit to jasonbridges/sonic-buildimage that referenced this pull request Jan 22, 2026
…lly (sonic-net#24914)

#### Why I did it
src/sonic-swss
```
* dd9cf3d7 - (HEAD -> master, origin/master, origin/HEAD) [orchagent] Event-based Retry Strategy (sonic-net#3699) (27 hours ago) [Yijiao Qin]
* 9d38663e - [chassis] Fixed bug in Fabric monitor capacity (sonic-net#4057) (30 hours ago) [saksarav-nokia]
* 8aca780a - [ssw][ha] add ACTION_COUNTER to acl table type (sonic-net#4068) (34 hours ago) [Jing Zhang]
* 8e0a0e7d - Use the correct slave container for the branch (sonic-net#4074) (34 hours ago) [Saikrishna Arcot]
```
#### How I did it
#### How to verify it
#### Description for the changelog
FengPan-Frank pushed a commit to FengPan-Frank/sonic-buildimage that referenced this pull request Mar 6, 2026
…lly (sonic-net#24914)

#### Why I did it
src/sonic-swss
```
* dd9cf3d7 - (HEAD -> master, origin/master, origin/HEAD) [orchagent] Event-based Retry Strategy (sonic-net#3699) (27 hours ago) [Yijiao Qin]
* 9d38663e - [chassis] Fixed bug in Fabric monitor capacity (sonic-net#4057) (30 hours ago) [saksarav-nokia]
* 8aca780a - [ssw][ha] add ACTION_COUNTER to acl table type (sonic-net#4068) (34 hours ago) [Jing Zhang]
* 8e0a0e7d - Use the correct slave container for the branch (sonic-net#4074) (34 hours ago) [Saikrishna Arcot]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: Feng Pan <fenpan@microsoft.com>
dprital pushed a commit that referenced this pull request Mar 19, 2026
…lly (#24914)

#### Why I did it
src/sonic-swss
```
* dd9cf3d7 - (HEAD -> master, origin/master, origin/HEAD) [orchagent] Event-based Retry Strategy (#3699) (27 hours ago) [Yijiao Qin]
* 9d38663e - [chassis] Fixed bug in Fabric monitor capacity (#4057) (30 hours ago) [saksarav-nokia]
* 8aca780a - [ssw][ha] add ACTION_COUNTER to acl table type (#4068) (34 hours ago) [Jing Zhang]
* 8e0a0e7d - Use the correct slave container for the branch (#4074) (34 hours ago) [Saikrishna Arcot]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: dprital <drorp@nvidia.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants