mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 18:02:16 +00:00
Fix port numbers for ssh and ftp
This commit is contained in:
parent
89dfed83af
commit
86dde20529
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ namespace ShiftOS.Engine
|
|||
if (data.SystemType.HasFlag(Objects.SystemType.FileServer))
|
||||
hsys.PortsToUnlock.Add(new Port
|
||||
{
|
||||
Value = 22,
|
||||
Value = 21,
|
||||
Name = "File Transfer Protocol",
|
||||
Tier = hsys.Data.LockTier,
|
||||
Locks = GetLocks(hsys.Data.LockTier, hsys.Data.FirewallStrength),
|
||||
|
@ -88,7 +88,7 @@ namespace ShiftOS.Engine
|
|||
if (data.SystemType.HasFlag(Objects.SystemType.SSHServer))
|
||||
hsys.PortsToUnlock.Add(new Port
|
||||
{
|
||||
Value = 21,
|
||||
Value = 22,
|
||||
Name = "ShiftSSH server",
|
||||
Tier = hsys.Data.LockTier,
|
||||
Locks = GetLocks(hsys.Data.LockTier, hsys.Data.FirewallStrength),
|
||||
|
|
Loading…
Reference in a new issue