Change CDN to assign static IP for S1U interface
Change-Id: I1493cdd7c89a0bc86a47f631e91ad79863fb2a11
diff --git a/cdn-services/cdn-local/templates/cm.yaml b/cdn-services/cdn-local/templates/cm.yaml
index d6d7849..49b5f95 100644
--- a/cdn-services/cdn-local/templates/cm.yaml
+++ b/cdn-services/cdn-local/templates/cm.yaml
@@ -21,9 +21,9 @@
data:
nginx_rtmp_config.sh: |+
#!/bin/bash
- ip route add {{ .Values.ue_ip_subnet1 }} via {{ .Values.spgwu_sgiip }} dev sgi-net;
- ip route add {{ .Values.ue_ip_subnet2 }} via {{ .Values.spgwu_sgiip }} dev sgi-net;
- ip link set sgi-net mtu 1200;
+ ip route add {{ .Values.ue_ip_subnet1 }} via {{ .Values.spgwu_sgiip }} dev sgi-net-nd;
+ ip route add {{ .Values.ue_ip_subnet2 }} via {{ .Values.spgwu_sgiip }} dev sgi-net-nd;
+ ip link set sgi-net-nd mtu 1200;
cp /conf/nginx.conf /etc/nginx/
nginx -g "daemon off;"
---