#!/bin/sh # ===================================================================== # Projet : DARKWALL # Fichier : bin/GetLl6ForIface # Auteur : Nicolas "DarkHack" Chapuis (c) 2026 # ================== DARKHACK ================== # [ darkweb.fr - system online ] # Powered by Perplexity, your AI assistant # https://www.perplexity.ai # ============================================== # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ===================================================================== if ! type "shInclude" > /dev/null 2>&1; then racineSh="${racineSh:-/etc/darksh}"; . "$racineSh/lib/shTools"; shDebugEnable="${shDebugEnable:-}";fi rootDarkWall="${rootDarkWall:-/etc/darkwall}" [ ! -d "$rootDarkWall" ] && shDebug 0 "exit cause rootDarWall is not dir:$rootDarkWall" && exit 0 shLog="testGetIp:" #shDebugEnable="1" shDebug "$*" $(shInclude $rootDarkWall/lib/firewall6) #$(shInclude $rootDarkWall/upnp/lib-sh/upnp) $(shInclude $rootDarkWall/global/vars) #$(shInclude $rootDarkWall/upnp/global/vars) eth="$1" #iptoolsGetHostEth $eth for ip6 in $(ip6toolsGetIps $eth);do if ip6IsInNetwork "${ip6}" "fe80::/10";then $(which echo) -e "$ip6\c" break else continue fi done