{% extends "base.html" %} {% block title %}代理实例 · SOCKS Manager{% endblock %} {% block content %}
| 名称 | 监听地址 | 认证 | 限速 | 并发 | 状态 | 活跃连接 | 操作 |
|---|---|---|---|---|---|---|---|
|
{{ inst.name }}
{% if inst.notes %} {{ inst.notes }}{% endif %} |
{{ inst.host }}:{{ inst.port }} |
{{ '账号密码' if inst.auth_method=='userpass' else '无认证' }} | ↓{{ inst.bandwidth_down or '不限' }} ↑{{ inst.bandwidth_up or '不限' }} Mbps | {{ inst.max_concurrent }} | {{ '运行中' if inst.running else '已停止' }} | {{ inst.active_connections }} |
{% if not inst.running %}
{% else %}
{% endif %}
|