mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-08-03 01:34:31 +02:00
Allow SSH connection to different ports
This commit is contained in:
parent
a9215845bf
commit
25c700b0c1
5 changed files with 58 additions and 21 deletions
18
router_manager/migrations/0016_router_port.py
Normal file
18
router_manager/migrations/0016_router_port.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.0.3 on 2024-04-12 17:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('router_manager', '0015_alter_routerstatus_status_online'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='router',
|
||||
name='port',
|
||||
field=models.IntegerField(default=22),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue