Skip to content
  • Home
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Lux)
  • No Skin
Collapse
Ukraine Tryzub and Canada Leaf
  1. UKRAINIANS ON THE CANADA MAP
  2. Categories
  3. Вільне спілкування
  4. (UA) IT/Tech Ukrainians in Canada

(UA) IT/Tech Ukrainians in Canada

Scheduled Pinned Locked Moved Вільне спілкування
647.4k Posts 3.6k Posters 372.0k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • t302253680T Offline
    t302253680T Offline
    Max
    wrote on last edited by
    #613854
    Навіть в грудні паспорт видали по резерву цьому
    1 Reply Last reply
    0
  • t302253680T Offline
    t302253680T Offline
    Max
    wrote on last edited by
    #613855
    Ну, за себе кажу, нема 🤷‍♂
    1 Reply Last reply
    0
  • T Offline
    T Offline
    Pe ter
    wrote on last edited by
    #613856
    Хіба?
    1 Reply Last reply
    0
  • T Offline
    T Offline
    Alex
    wrote on last edited by
    #613857
    крест на пузе и тогда поверим
    1 Reply Last reply
    0
  • T Offline
    T Offline
    Pe ter
    wrote on last edited by
    #613858
    потім вирішили неескаліровать і хтось поправив дефолтне значення в апці🙃
    1 Reply Last reply
    0
  • T Offline
    T Offline
    Pe ter
    wrote on last edited by
    #613859
    є ж статус в розшуку, колись був по дефолту прописаний
    1 Reply Last reply
    0
  • T Offline
    T Offline
    Vtl
    wrote on last edited by
    #613860
    Не видавати документів. Створити умови неможливості їх отримання, при цьому на весь світ стверджуючі про підтримку і надання всіх можливих послуг, декларативно. Це як з правовою державою приблизно.
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613861
    когда идёшь, то уже с концами
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613862
    я никогда не ходил за контр офером
    1 Reply Last reply
    0
  • t217669277T Offline
    t217669277T Offline
    Mykola Buhai
    wrote on last edited by
    #613863
    Тот кто говорит что он за контр оффером - дурачок
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613864
    пост про те як цінується чесність в бізнес світі
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613865
    ахах
    1 Reply Last reply
    0
  • t665864174T Offline
    t665864174T Offline
    Max
    wrote on last edited by
    #613866
    GPT it out: Here’s a step-by-step guide to setting up an OpenVPN server on your PC and instructions on how to connect to it. Part 1: Setting Up the OpenVPN Server 1. Install OpenVPN 1. Windows: • Download the OpenVPN installer from the OpenVPN website. • Run the installer and select all default options, including the OpenVPN TAP driver. 2. Linux: • Run the following commands: sudo apt update sudo apt install openvpn easy-rsa 3. macOS: Use a package manager like Homebrew: brew install openvpn 2. Configure the Server 1. Navigate to the Easy-RSA directory: cd /etc/openvpn/ sudo mkdir easy-rsa cp -r /usr/share/easy-rsa/* easy-rsa/ cd easy-rsa 2. Initialize the PKI environment: ./easyrsa init-pki 3. Build the Certificate Authority (CA): ./easyrsa build-ca • You will be prompted to create and confirm a password for the CA. 4. Generate the Server Certificate and Key: ./easyrsa build-server-full server nopass 5. Generate the Diffie-Hellman Key: ./easyrsa gen-dh 6. Generate a Shared Key for TLS Authentication: openvpn --genkey --secret ta.key 7. Copy the generated files to the OpenVPN directory: sudo cp pki/ca.crt pki/issued/server.crt pki/private/server.key pki/dh.pem ta.key /etc/openvpn/ 3. Create the Server Configuration File 1. Create a new file: /etc/openvpn/server.conf. sudo nano /etc/openvpn/server.conf 2. Add the following configuration: port 1194 proto udp dev tun ca ca.crt cert server.crt key server.key dh dh.pem tls-auth ta.key 0 server 10.8.0.0 255.255.255.0 ifconfig-pool-persist ipp.txt push "redirect-gateway def1 bypass-dhcp" push "dhcp-option DNS 8.8.8.8" keepalive 10 120 cipher AES-256-CBC user nobody group nogroup persist-key persist-tun status openvpn-status.log verb 3 3. Save and exit the file. 4. Start the OpenVPN Server 1. Enable and start OpenVPN: sudo systemctl enable openvpn@server sudo systemctl start openvpn@server 2. Check if it’s running: sudo systemctl status openvpn@server Part 2: Generating Client Files 1. Generate the client certificate: ./easyrsa build-client-full client1 nopass 2. Create a client configuration file: Create a new file client1.ovpn: nano client1.ovpn 3. Add the following to the file: client dev tun proto udp remote [YOUR_SERVER_IP] 1194 resolv-retry infinite nobind persist-key persist-tun remote-cert-tls server cipher AES-256-CBC verb 3 key-direction 1 [Insert contents of ca.crt here] [Insert contents of client1.crt here] [Insert contents of client1.key here] [Insert contents of ta.key here] 4. Save the file and distribute client1.ovpn to the client. Part 3: Connect to the OpenVPN Server 1. Install OpenVPN Client: • Download and install the OpenVPN client from the OpenVPN website. 2. Import the .ovpn file into the client. 3. Connect using the OpenVPN client. Troubleshooting • Ensure port 1194 is open on your firewall. • Test your connection with the OpenVPN logs for debugging. Let me know if you need help with any step!
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613867
    типа +50% от старой зп? или 10%?
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613868
    а сколько процентов добавили?
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613869
    сильно
    1 Reply Last reply
    0
  • t217669277T Offline
    t217669277T Offline
    Mykola Buhai
    wrote on last edited by
    #613870
    Я сказал я хочу остаться но мало денег. Уравняете? Да Остался. Еще 4 года работал
    1 Reply Last reply
    0
  • t217669277T Offline
    t217669277T Offline
    Mykola Buhai
    wrote on last edited by
    #613871
    Нет
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613872
    когда ты принёс контр офер
    1 Reply Last reply
    0
  • t304000159T Offline
    t304000159T Offline
    Gleb
    wrote on last edited by
    #613873
    разве нет?
    1 Reply Last reply
    0

  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Home
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups