Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sshway
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frank Sauerburger
sshway
Commits
f24c1b71
Verified
Commit
f24c1b71
authored
1 year ago
by
Frank Sauerburger
Browse files
Options
Downloads
Patches
Plain Diff
Improve logging and connection handling
parent
c47128a8
Branches
main
Tags
0.1.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+2
-1
2 additions, 1 deletion
Dockerfile
main.go
+15
-9
15 additions, 9 deletions
main.go
with
17 additions
and
10 deletions
Dockerfile
+
2
−
1
View file @
f24c1b71
...
@@ -7,4 +7,5 @@ RUN go build -ldflags="-w -s" -o /go/bin/sshway
...
@@ -7,4 +7,5 @@ RUN go build -ldflags="-w -s" -o /go/bin/sshway
FROM
alpine:3.18
FROM
alpine:3.18
COPY
--from=builder /go/bin/sshway /bin/sshway
COPY
--from=builder /go/bin/sshway /bin/sshway
CMD
["/bin/sshway"]
EXPOSE
2222
\ No newline at end of file
CMD
["/bin/sshway"]
This diff is collapsed.
Click to expand it.
main.go
+
15
−
9
View file @
f24c1b71
...
@@ -67,17 +67,20 @@ func main() {
...
@@ -67,17 +67,20 @@ func main() {
fmt
.
Printf
(
"Listening on %s
\n
"
,
localAddr
)
fmt
.
Printf
(
"Listening on %s
\n
"
,
localAddr
)
defer
server
.
Close
()
defer
server
.
Close
()
client_counter
:=
0
for
{
for
{
connection
,
err
:=
server
.
Accept
()
connection
,
err
:=
server
.
Accept
()
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Fatalf
(
"Error accepting local client: %v
\n
"
,
err
)
log
.
Fatalf
(
"Error accepting local client: %v
\n
"
,
err
)
}
}
fmt
.
Printf
(
"client connected %s
\n
"
,
connection
.
RemoteAddr
()
.
String
())
log
.
Printf
(
"%6d New connection from client: %s
\n
"
,
client_counter
,
connection
.
RemoteAddr
()
.
String
())
go
handleClient
(
connection
)
go
handleClient
(
client_counter
,
connection
)
client_counter
++
}
}
}
}
func
handleClient
(
localSock
net
.
Conn
)
{
func
handleClient
(
client_counter
int
,
localSock
net
.
Conn
)
{
defer
localSock
.
Close
()
defer
localSock
.
Close
()
config
:=
&
ssh
.
ClientConfig
{
config
:=
&
ssh
.
ClientConfig
{
...
@@ -92,21 +95,24 @@ func handleClient(localSock net.Conn) {
...
@@ -92,21 +95,24 @@ func handleClient(localSock net.Conn) {
conn
,
err
:=
ssh
.
Dial
(
"tcp"
,
sshHost
,
config
)
conn
,
err
:=
ssh
.
Dial
(
"tcp"
,
sshHost
,
config
)
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Printf
(
"SSH connection failed: %v
\n
"
,
err
)
log
.
Printf
(
"
%6d
SSH connection failed: %v
\n
"
,
client_counter
,
err
)
return
return
}
}
defer
conn
.
Close
()
forwardClient
,
err
:=
conn
.
Dial
(
"tcp"
,
remoteAddr
)
forwardClient
,
err
:=
conn
.
Dial
(
"tcp"
,
remoteAddr
)
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Printf
(
"Port forward failed: %v
\n
"
,
err
)
log
.
Printf
(
"%6d Port forward failed: %v
\n
"
,
client_counter
,
err
)
conn
.
Close
()
return
return
}
}
go
func
()
{
go
func
()
{
io
.
Copy
(
localSock
,
forwardClient
)
io
.
Copy
(
forwardClient
,
localSock
)
log
.
Printf
(
"%6d Local client disconnected
\n
"
,
client_counter
)
conn
.
Close
()
}()
}()
io
.
Copy
(
forwardClient
,
localSock
)
io
.
Copy
(
localSock
,
forwardClient
)
log
.
Printf
(
"Disconnected: %v
\n
"
,
localSock
)
log
.
Printf
(
"%6d Remote socket closed for local client
\n
"
,
client_counter
)
conn
.
Close
()
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment