Replies: 4 comments
-
I don't use a VPN, But testing your example without a VPN gives me an error.
What does the output of |
Beta Was this translation helpful? Give feedback.
-
looks like your sed is wrong i've annoted it as code so maybe it doesn't clip it.. The output looks like this.. Your original responds with On another machine... (the ip is 44) with the original I'm getting the bridged IP.. br1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 |
Beta Was this translation helpful? Give feedback.
-
I've fixed it in https://github.com/007revad/Plex_Server_Sync/releases/tag/v2.0.8 |
Beta Was this translation helpful? Give feedback.
-
Now if I can just get rid of the permission issues.. and I think that's
far more on my side than yours.. Will advise if I can prove otherwise..
Thanks and have a great day
…On Fri, Apr 4, 2025 at 3:15 PM Dave Russell ***@***.***> wrote:
I've fixed it in
https://github.com/007revad/Plex_Server_Sync/releases/tag/v2.0.8
—
Reply to this email directly, view it on GitHub
<#16 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEDM2UI4QUELSNM2KW5PQML2X3K3JAVCNFSM6AAAAAB2MO2MDWVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTENZSHEZTCMQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
--
Thanks
Brian Stephens
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
bash ./plex_server_sync.sh
Plex_Server_Sync v2.0.7
--- Plex Server Sync ---
Syncing 192.168.1.218 to 192.168.1.211
Aborting! Script is not running on source device: 192.168.1.218
Local IP is 192.168.1.218 and configured as such
brian@AMD5700:~/Downloads/Plex_Server_Sync-2.0.7$ ifconfig
enp41s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.218 netmask 255.255.255.0 broadcast 192.168.1.255
VPN is something else
wgpia0: flags=209<UP,POINTOPOINT,RUNNING,NOARP> mtu 1414
inet 10.39.165.143 netmask 255.255.255.255 destination 10.39.165.143
AMD5700:
/ip=$(ip route get 1 | sed 's/^.src ([^ ]).*$/\1/;q') # for comparability/Downloads/Plex_Server_Sync-2.0.7$ echo $ipAMD5700:
10.39.165.143
If you are going to use route to get your IP maybe use the route to the destination server to get it.. like so
ip=$(ip -o route get $dst_IP | sed 's/^.src ([^ ]).*$/\1/;q') # for comparability
Beta Was this translation helpful? Give feedback.
All reactions