diff --git a/frontend/src/pages/SubscriberRead.tsx b/frontend/src/pages/SubscriberRead.tsx
index fbd82b98097895f84aad5cf78abe1ca56748d92b..1d4994dd9c683941117620779c901045afadf9c4 100644
--- a/frontend/src/pages/SubscriberRead.tsx
+++ b/frontend/src/pages/SubscriberRead.tsx
@@ -417,6 +417,18 @@ export default function SubscriberRead() {
                             </TableCell>
                           </TableRow>
                         </TableBody>
+                        <TableBody>
+                          <TableRow>
+                            <TableCell style={{ width: "40%" }}>StaticIpv4</TableCell>
+                            <TableCell>
+                              {row.dnnConfigurations![dnn]["staticIpAddress"] == null
+                                ? "Not Set"
+                                : row.dnnConfigurations![dnn]["staticIpAddress"]?.length == 0
+                                  ? ""
+                                  : row.dnnConfigurations![dnn]["staticIpAddress"]![0].ipv4Addr!}
+                            </TableCell>
+                          </TableRow>
+                        </TableBody>
                       </Table>
                       {flowRule(dnn, row.singleNssai!)}
                       {upSecurity(row.dnnConfigurations![dnn])}