Advanced networking: per-peer site subnets (site-to-site), per-peer client routes, peer isolation option, client setup guide
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This commit is contained in:
co-authored by
factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
parent
d10e9fa346
commit
192960ad3e
@@ -24,6 +24,8 @@ class Peer(Base):
|
||||
created_at: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=utcnow)
|
||||
note: Mapped[str] = mapped_column(String(256), default="")
|
||||
dns: Mapped[str] = mapped_column(String(128), default="")
|
||||
extra_allowed_ips: Mapped[str] = mapped_column(String(512), default="")
|
||||
client_allowed_ips: Mapped[str] = mapped_column(String(512), default="")
|
||||
quota_bytes: Mapped[int] = mapped_column(Integer, default=0)
|
||||
cum_rx: Mapped[int] = mapped_column(Integer, default=0)
|
||||
cum_tx: Mapped[int] = mapped_column(Integer, default=0)
|
||||
|
||||
Reference in New Issue
Block a user