Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions source/include/utapi/utapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -3400,6 +3400,7 @@ int Utopia_SetLanMngmLanNapt(UtopiaContext *ctx, napt_mode_t enable);

typedef struct dns_client{
char dns_server[DNS_CLIENT_NAMESERVER_CNT][IPADDR_SZ];
char s_alias[DNS_CLIENT_NAMESERVER_CNT][TR_ALIAS_SZ];
}DNS_Client_t;

/**
Expand Down
2 changes: 2 additions & 0 deletions source/include/utctx/utctx_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,8 @@ typedef enum _UtopiaValue
UtopiaValue_PFR_PrevRuleEnabledState,
UtopiaValue_PRT_PrevRuleEnabledState,
UtopiaValue_HashPassword,
UtopiaValue_Dns_Relay_Enable,
UtopiaValue_Dns_ForwardCount,
#if defined(_WAN_MANAGER_ENABLED_)
UtopiaValue_WanMode,
UtopiaValue_WanConnEnabled,
Expand Down
18 changes: 18 additions & 0 deletions source/scripts/init/service.d/lan_handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,24 @@ case "$1" in
sysevent set multinet-up 9
fi

# --------------------------------------------------------------------
# RPi specific change begin
# --------------------------------------------------------------------

PHY_BRIDGE_IFNAME=`syscfg get lan_ifname`
PHY_ETH_IFNAMES=`syscfg get lan_ethernet_physical_ifnames`
IFS=' ' read -r -a PHY_ETH_IFNAME_ARRAY <<< "$PHY_ETH_IFNAMES"
for PHY_ETH_IFNAME in "${PHY_ETH_IFNAME_ARRAY[@]}"
do
echo "LAN HANDLER : PHY_ETH_IFNAME = $PHY_ETH_IFNAME"
ifconfig $PHY_ETH_IFNAME up
brctl addif $PHY_BRIDGE_IFNAME $PHY_ETH_IFNAME
done
Comment on lines +322 to +330

# --------------------------------------------------------------------
# RPi specific change end
# --------------------------------------------------------------------

echo_t "LAN HANDLER : Triggering RDKB_FIREWALL_RESTART after nfqhandler"
t2CountNotify "RF_INFO_RDKB_FIREWALL_RESTART"
sysevent set firewall-restart
Expand Down
Loading
Loading