From c114eeda6a124695003fa09a492eb687dc7ec06e Mon Sep 17 00:00:00 2001 From: rirfha948 Date: Wed, 10 Jun 2026 07:38:28 +0000 Subject: [PATCH] CBR2-2255: Observing multiple "RDKB_PROCESS_CRASHED : rsync_dropbear_process" logs Reason for change: Dropbear listening on IPv6 address Reverting a part of change " RDKB-57087: dummy wan0 interface removal" Test Procedure: - Drop bear should listening on ARM interface IP - Crash log should not be seen in CBR2 during bootup - In ETHWAN mode, forward SSH should be possible with IPV4 Priority: P1 - [] Is this a User Story (US)? This is a bug ticket - [x] Have all dependent PRs from other components been listed ? - [x] Does the commit message include both the User Story ticket and the Subtask ticket? - [x] Will be all changes related to the User Story squashed and merged in a single commit? - [x] Has the PR been raised only after completing all changes for the User Story (no partial changes)? - [x] Has code development for the User Story been completed? - [x] If yes, has the Gerrit topic or list of all dependent PRs across components (including meta-layer changes) been shared? https://gerrit.teamccp.com/#/c/953000/ - [x] Is there a validation log available in the Jira ticket for verifying builds with the updated generic-srcrev.inc across all platforms? --- source/scripts/init/service.d/service_sshd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/scripts/init/service.d/service_sshd.sh b/source/scripts/init/service.d/service_sshd.sh index 00c40b62..217126aa 100755 --- a/source/scripts/init/service.d/service_sshd.sh +++ b/source/scripts/init/service.d/service_sshd.sh @@ -156,8 +156,8 @@ do_start() { #getting the IPV4 address for V4 CM SSH packets if [ "$WAN_INTERFACE" = "$DEFAULT_WAN_INTERFACE" ] ; then if [ -f "/nvram/ETHWAN_ENABLE" ];then - # CM_IPV4=`ifconfig privbr:0 | grep "inet addr" | awk '/inet/{print $2}' | cut -f2 -d:` - # else + CM_IPV4=`ip -4 addr show dev $CMINTERFACE scope global | awk '/inet/{print $2}' | cut -d '/' -f1` + else CM_IPV4=`ifconfig privbr:0 | grep "inet addr" | awk '/inet/{print $2}' | cut -f2 -d:` fi else