- User Conguration
- Preferences
- Windows Settings
- Shortcuts
- New -> Shortcut
- update
- name of the link ( myfolder\mylink )
- file system object
- Desktop
- \\mypath\mylink
Create Desktop Shortcuts via GPO
How to connect to Sql Server 2017 from php on debian 10
apt-get update
apt-get install unixodbc unixodbc-dev php-odbc php-cli
wget https://packages.microsoft.com/debian/10/prod/pool/main/m/msodbcsql17/msodbcsql17_17.4.1.1-1_amd64.deb
odbcinst -i -d -f /opt/microsoft/msodbcsql17/etc/odbcinst.ini
nano /etc/odbc.ini
[MySQLServerDB]
Description = Database SqlServerDB
Driver = ODBC Driver 17 for SQL Server
Server = server[,port]
Hyper-V Virtual Switches
Types of Virtual Switches
External – This type of switch is bound to the physical network cards located in the host. As you would imagine, they provide VMs located on these switches with access to the physical network the Hyper-V host is connected to. The External switch can also share management traffic as well as VM traffic on the same switch and this is one of the options that can be set when creating the external switch.
Internal – This switch is not bound to a physical network card so only allows traffic between VMs and the host itself. However, a new addition to the Internal switch functionality in 2016 is the addition of the NAT forwarding internal switch which does allow external connectivity via NAT from the Hyper-V host.
Private – This type of switch is only used for virtual machines to communicate with each other. This type of switch might be useful for certain specific types of traffic such as cluster network if only using one host as it can’t be utilized between hosts.
Basic VLAN concepts
Based on HP
You can configure the link type of a port as access, trunk, or hybrid. The link types use the following VLAN tag handling methods:
- Access: an access port can forward packets from only one VLAN and send these packets untagged. An access port can connect a terminal device that does not support VLAN packets or is used in scenarios that do not distinguish VLANs.
- Trunk: a trunk port can forward packets from multiple VLANs. Except packets from the port VLAN ID (PVID), packets sent out of a trunk port are VLAN-tagged. Ports connecting network devices are typically configured as trunk ports.
- Hybrid: a hybrid port can forward packets from multiple VLANs. The tagging status of the packets forwarded by a hybrid port depends on the port configuration. A hybrid port can connect a network device or terminal device that can identify packets tagged with some VLANs.
The PVID identifies the default VLAN of a port. Untagged packets are transmitted through the default VLAN.
When you configure the PVID on a port, follow these guidelines:
- An access or trunk port sends packets from the default VLAN untagged.
- A hybrid port can send packets from the default VLAN tagged or untagged.
- An access port can join only one VLAN. The VLAN to which the access port belongs is the PVID of the port.
- A trunk or hybrid port supports multiple VLANs and the PVID configuration.
Based on Cisco:
Each port or LAG is marked with one of the following modes:
- Access: port belongs to a single untagged VLAN. When a port is in Access mode, the packet types that are accepted on the port (packet type) cannot be designated. It is not possible to enable/disable ingress filtering on an access port.
- Trunk: port can be member of one or more VLANs. It is an untagged member of at most one VLAN, and is a tagged member of all other VLANs of which it is a member.
- General: port can be tagged or untagged and be members of one or more VLAN. (full 802.1Q mode).
For each port or LAG (Link Aggregation Group), select one of the following values:
- Forbidden: port is not able to join the VLAN even if it is was dynamically added using a protocol such as GVRP.
- Excluded: port is not a member of the VLAN. However, the interface can be added to the VLAN through GVRP. This option is not available for the default VLAN.
- Untagged: interface is an untagged VLAN member. Packets forwarded by the interface are untagged.
- Tagged: interface is a tagged member of a VLAN. All packets forwarded by the interface are tagged and contain VLAN information.
For each port or LAG, one or both of the following values may be selected:
- PVID: port PVID is set to this VLAN.
- Multicast TV VLAN: select to make the port a member of the selected VLAN as a Multicast TV VLAN. This option is grayed out for Trunk and General port modes.
Calculate the Prints Monthly Average on Zabbix
Assuming that “pagecount” is the global counter item of our printer we can create a calculated item with the following expression:
max(pagecount,2592000)-min(pagecount,2592000)
where 2592000 is the number of seconds (30 days, i.e 60sec x 60min x 24hours x 30days) of our interval to get the minimum and the maximum number detected.
Recent Comments