Задняя сторона самая интересная. Первым делом на ней мы видим две Wi-Fi антенны. Затем два стандартных телефонных разъема - RJ11, четыре разъема LAN - RJ45, в режиме роутера работают LAN1 и LAN2, два других работают в режиме бриджа.
Если у абонента нет услуг iDPhone и iDTV LAN3 и LAN4 отключены.
---
- hosts: win
gather_facts: true
# ansible_connection: winrm
tasks:
name: Download and install application, 32 bit case
win_package:
path: 'https://download-cf.jetbrains.com/[path-of-the-32-bits-edition].exe'
product_id: "PhpStorm"
arguments: /S /install
state: present
when: ansible_architecture == "32 bits"
name: Download and install application, 64 bit case
win_package:
path: 'https://download-cf.jetbrains.com/[path-of-the-64-bits-edition].exe'
product_id: "PhpStorm"
arguments: /S /install
state: present
when: ansible_architecture == "64 bits"
If the NGINX ingress controller is exposed with a service type=LoadBalancer make sure the protocol between the loadbalancer and NGINX is TCP.