Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The linux arm64 version does not work properly #81

Closed
ir5ghub opened this issue Apr 29, 2024 · 1 comment
Closed

The linux arm64 version does not work properly #81

ir5ghub opened this issue Apr 29, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@ir5ghub
Copy link

ir5ghub commented Apr 29, 2024

I have an xiaomi ax3200 router
I installed the arm64 version, but the connection is not established
If it is connected to the same network with another router with arm7 processor.
Did I download the wrong version or is the problem somewhere else?
These values are displayed by running the warp command.

root@OpenWrt:~# warp
time=2024-04-29T21:20:10.596Z level=INFO msg="successfully generated wireguard configuration" subsystem=warp/account
time=2024-04-29T21:20:10.597Z level=INFO msg="successfully generated wireguard configuration" subsystem=warp/account
time=2024-04-29T21:20:10.597Z level=INFO msg="using warp endpoints" endpoints="[162.159.195.127:1180 162.159.195.127:1180]"
time=2024-04-29T21:20:10.597Z level=INFO msg="running in normal warp mode"
time=2024-04-29T21:20:12.785Z level=ERROR msg="listen tcp 127.0.0.1:8086: bind: address already in use"

configuration:

#!/bin/sh /etc/rc.common

START=91

USE_PROCD=1

PROG=/usr/bin/warp

start_service() {
  args=""
  args="$args -b 127.0.0.1:8086 --scan"
  procd_open_instance
  procd_set_param command $PROG $args
  procd_set_param stdout 1
  procd_set_param stderr 1
  procd_set_param respawn
  procd_close_instance
}
@markpash
Copy link
Member

Hi @apktopsblog the logs seem to indicate that the port is already in use. Are you sure there's no other service running on that port? Or perhaps the service is already running? Also if you want to access the proxy from other machines, you need to bind on an address different from 127.0.0.1. Try using the LAN IP address of this router machine.

@markpash markpash added the bug Something isn't working label May 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants