添加管理员端路由管理功能,查看当前系统剩余的NAT4或者V6地址剩余情况

This commit is contained in:
MengMengCode
2026-06-06 10:30:48 +08:00
parent 8dd01fe714
commit 8b402fcfa1
8 changed files with 518 additions and 1 deletions
+2
View File
@@ -11,6 +11,7 @@ import ApiIntegration from './pages/ApiIntegration'
import Settings from './pages/Settings'
import ImageManagement from './pages/ImageManagement'
import Snapshots from './pages/Snapshots'
import Routing from './pages/Routing'
import Layout from './components/Layout'
function ProtectedRoute({ children }: { children: React.ReactNode }) {
@@ -59,6 +60,7 @@ function App() {
<Route path="oversell" element={<Oversell />} />
<Route path="security" element={<Security />} />
<Route path="snapshots" element={<Snapshots />} />
<Route path="routing" element={<Routing />} />
<Route path="audit-logs" element={<AuditLogs />} />
<Route path="api-integration" element={<ApiIntegration />} />
<Route path="settings" element={<Settings />} />