feat: 网元快速安装添加SMSC的ip填充

This commit is contained in:
TsMask
2024-10-09 09:50:31 +08:00
parent 8dd84a5255
commit 4cb13a1419
2 changed files with 4 additions and 0 deletions

View File

@@ -70,6 +70,7 @@ let fromState = ref({
nef_ip: '172.16.5.210',
mme_ip: '172.16.5.220',
n3iwf_ip: '172.16.5.230',
smsc_ip: '172.16.5.240',
},
});

View File

@@ -102,6 +102,9 @@ export function usePara5G() {
case 'N3IWF':
state.from.sbi.n3iwf_ip = item.ip;
break;
case 'SMSC':
state.from.sbi.smsc_ip = item.ip;
break;
}
}
}