{% extends "base.html" %} {% block title %}代理实例 · SOCKS Manager{% endblock %} {% block content %}
{% for inst in instances %} {% endfor %}
名称监听地址认证限速并发 状态活跃连接操作
{{ 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 %}
{% if not instances %}
暂无实例,点击上方"新建实例"开始
{% endif %}
{% endblock %} {% block extra_script %} {% endblock %}