diff --git a/TPSI/aviano_riccardo/.gitkeep b/TPSI/aviano_riccardo/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/TPSI/aviano_riccardo/file.txt b/TPSI/aviano_riccardo/file.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/TPSI/costanzo_francesco/.gitkeep b/TPSI/costanzo_francesco/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_02.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_02.html new file mode 100644 index 00000000..291d5cec --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_02.html @@ -0,0 +1,62 @@ + + + + + + + + + + Es 2 + + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_03.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_03.html new file mode 100644 index 00000000..4fa5acc3 --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_03.html @@ -0,0 +1,60 @@ + + + + + + + + + + + Es 3 + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_10.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_10.html new file mode 100644 index 00000000..afdcfbb5 --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_10.html @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + Esercizio 10 + + + + +

Reti di Calcolatori

+

localhost

+
+

In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. + Using the loopback interface bypasses any local network interface hardware. +

+
+

Loopback

+
+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+
+

Name resolution

+

IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers.

+

In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally.

+

In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost.

+

IETF standards

+

The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System:

+

An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). +

+

In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it.

+

Packet processing

+

The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces.

+

Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address.

+

Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+

special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address.

+

One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_11.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_11.html new file mode 100644 index 00000000..85c03096 --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_11.html @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + Esercizio 11 + + + + +

Reti di Calcolatori

+

localhost

+
+
+

In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. + Using the loopback interface bypasses any local network interface hardware. +

+
+
+

Loopback

+
+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+
+

Name resolution

+
+
+
+

IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+
+
+
+

The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers.

+

In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally.

+

In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost.

+

IETF standards

+

The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System:

+

An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). +

+

In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it.

+

Packet processing

+

The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces.

+

Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address.

+

Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+

special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address.

+

One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_12.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_12.html new file mode 100644 index 00000000..c5fb319a --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_12.html @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + Esercizio 12 + + + + +

Reti di Calcolatori

+

localhost

+
+
+

In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. + Using the loopback interface bypasses any local network interface hardware. +

+
+
+
+

Loopback

+
+
+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+
+

Name resolution

+
+
+
+

IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+
+
+
+

The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers.

+

In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally.

+

In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost.

+

IETF standards

+

The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System:

+

An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). +

+

In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it.

+

Packet processing

+

The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces.

+

Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address.

+

Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+

special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address.

+

One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_26.css b/TPSI/sena_alessandro/css/Sena_esercizio_css_26.css new file mode 100644 index 00000000..1811d91a --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_26.css @@ -0,0 +1,33 @@ +/* Il contenitore viola */ +.container { + background-color: purple; + width: 550px; + padding: 40px; + /* Questo serve per far sì che il viola prenda tutto il contenuto */ + overflow: hidden; +} + + +.box-float { + float: right; + background-color: #c0e7d8; + + width: 150px; + height: 100px; + padding-top: 50px; + + text-align: center; + color: white; + font-family: sans-serif; + font-weight: bold; + border-radius: 10px; + margin-left: 20px; +} + + +.testo { + color: white; + font-family: sans-serif; + font-size: 25px; + margin: 0; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_26.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_26.html new file mode 100644 index 00000000..2a578c2c --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_26.html @@ -0,0 +1,21 @@ + + + + + + Esercizio CSS 26 + + + + +
+
+ Float +
+

+ This sentence appears next to the float. +

+
+ + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_27.css b/TPSI/sena_alessandro/css/Sena_esercizio_css_27.css new file mode 100644 index 00000000..724e579f --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_27.css @@ -0,0 +1,30 @@ + +.box-viola { + background-color: #800080; /* Colore viola */ + color: white; + width: 150px; + height: 150px; + padding: 20px; + border-radius: 8px; + margin-right: 15px; + + + float: left; + + font-family: sans-serif; +} + + +.testo-fianco { + font-family: sans-serif; + font-size: 18px; + padding-top: 10px; +} + +.testo-sotto { + font-family: sans-serif; + font-size: 18px; + margin-top: 20px; + + clear: both; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_27.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_27.html new file mode 100644 index 00000000..7747791a --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_27.html @@ -0,0 +1,23 @@ + + + + + Esercizio CSS 27 + + + + +
+ Float +
+ +

+ This sentence appears next to the float. +

+ +

+ Cause this sentence to appear below the float. +

+ + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_29.css b/TPSI/sena_alessandro/css/Sena_esercizio_css_29.css new file mode 100644 index 00000000..bf21c51a --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_29.css @@ -0,0 +1,37 @@ + +body { + margin: 0; + padding: 50px 0; + background-color: #f9f9f9; +} + +/* Punto 3.1: Centrata con margin auto e bordo 20px blu chiaro */ +.gallery-container { + display: flex; + width: fit-content; /* Stringe il contenitore attorno al contenuto */ + margin: 0 auto; + border: 20px solid #ADD8E6; + padding: 10px; + background-color: white; +} + + +.gallery-item { + border: 1px solid #000000; + margin: 5px; + display: block; +} + +/* Punto 3.3: Immagine con larghezza fissa di 150px */ +.gallery-item img { + width: 150px; + display: block; /* Toglie lo spazio vuoto sotto l'immagine */ +} + + +.descrizione { + text-align: center; + font-weight: bold; + padding: 5px; + font-family: sans-serif; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/Sena_esercizio_css_29.html b/TPSI/sena_alessandro/css/Sena_esercizio_css_29.html new file mode 100644 index 00000000..b84dd0c8 --- /dev/null +++ b/TPSI/sena_alessandro/css/Sena_esercizio_css_29.html @@ -0,0 +1,41 @@ + + + + + + Foto Gallery - Esercizio 29 + + + + + + + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_01.html b/TPSI/sena_alessandro/css/sena_esercizio_css_01.html new file mode 100644 index 00000000..20f2b778 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_01.html @@ -0,0 +1,59 @@ + + + + + + + + + + Es 2 + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_03.css b/TPSI/sena_alessandro/css/sena_esercizio_css_03.css new file mode 100644 index 00000000..9c896a76 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_03.css @@ -0,0 +1,2 @@ +h1 {color: green;} +h2 {color: green;} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_04.css b/TPSI/sena_alessandro/css/sena_esercizio_css_04.css new file mode 100644 index 00000000..9c896a76 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_04.css @@ -0,0 +1,2 @@ +h1 {color: green;} +h2 {color: green;} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_04.html b/TPSI/sena_alessandro/css/sena_esercizio_css_04.html new file mode 100644 index 00000000..5bc1cc73 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_04.html @@ -0,0 +1,61 @@ + + + + + + + + + + Es 2 + + + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_05.css b/TPSI/sena_alessandro/css/sena_esercizio_css_05.css new file mode 100644 index 00000000..36580207 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_05.css @@ -0,0 +1,3 @@ +h1 {color: red;} +h2 {color: green;} +p {color: blue;} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_06 .html b/TPSI/sena_alessandro/css/sena_esercizio_css_06 .html new file mode 100644 index 00000000..5bcdca6e --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_06 .html @@ -0,0 +1,60 @@ + + + + Esercizio_CSS_06 + + + + +

Local host

+

localhost

+

In computer networking, localhost is a hostname that refers to the current computer used to + access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+

Name resolution

+

+ IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost + + The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers. + + In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally. + + In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost. +

+

IETF standards

+

+ The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

+ The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering. +

+

Special cases

+

+ The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users. +

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_06.css b/TPSI/sena_alessandro/css/sena_esercizio_css_06.css new file mode 100644 index 00000000..0f213303 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_06.css @@ -0,0 +1,21 @@ + +h1 { + color: blue; +} +#pr1 { + color:red; +} + + +#pr2 { + color: green; +} + + +#dr3 { + color:rgb(226, 72, 0); +} + +#dr1 { + color: gray; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_07.html b/TPSI/sena_alessandro/css/sena_esercizio_css_07.html new file mode 100644 index 00000000..5bcdca6e --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_07.html @@ -0,0 +1,60 @@ + + + + Esercizio_CSS_06 + + + + +

Local host

+

localhost

+

In computer networking, localhost is a hostname that refers to the current computer used to + access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+

Name resolution

+

+ IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost + + The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers. + + In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally. + + In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost. +

+

IETF standards

+

+ The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

+ The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering. +

+

Special cases

+

+ The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users. +

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_08.css b/TPSI/sena_alessandro/css/sena_esercizio_css_08.css new file mode 100644 index 00000000..91fd17df --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_08.css @@ -0,0 +1,36 @@ + +h1, h2, h3 { + color: red; + text-decoration: underline; + text-decoration-color: gray; +} + + +p { + color: blue; + text-align: left; +} + +/* Stile specifico per il terzo heading h2 */ +h2:nth-of-type(3) { + color: green; +} + + +p:nth-of-type(7) { + color: red; + text-align: right; +} + + +hr:nth-of-type(even) { + border: none; + background-color: black; + height: 10px; +} + +hr:nth-of-type(odd) { + border: none; + background-color: red; + height: 3px; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_08html b/TPSI/sena_alessandro/css/sena_esercizio_css_08html new file mode 100644 index 00000000..f69fdd93 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_08html @@ -0,0 +1,60 @@ + + + + Esercizio_CSS_08 + + + + +

Local host

+

localhost

+

In computer networking, localhost is a hostname that refers to the current computer used to + access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+

Name resolution

+

+ IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost + + The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers. + + In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally. + + In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost. +

+

IETF standards

+

+ The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

+ The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering. +

+

Special cases

+

+ The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users. +

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_10.css b/TPSI/sena_alessandro/css/sena_esercizio_css_10.css new file mode 100644 index 00000000..d9fad753 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_10.css @@ -0,0 +1,13 @@ +h1 >span { + color: blue; +} + +h2 > span{ + color: red; +} +p > span{ + color:violet; +} +div>p>span{ + color:green; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_11.css b/TPSI/sena_alessandro/css/sena_esercizio_css_11.css new file mode 100644 index 00000000..71216553 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_11.css @@ -0,0 +1,15 @@ +p > mark{ + color: green; +} +p > b{ + color: yellow; + background-color: black; +} +div > em{ + color: red; + background-color: yellow; +} +div > span{ + background-color: yellow; + color: black; +} diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_12.css b/TPSI/sena_alessandro/css/sena_esercizio_css_12.css new file mode 100644 index 00000000..f9547553 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_12.css @@ -0,0 +1,25 @@ +a:link { + color: blue; +} +a:visited { + color: red; background-color: yellow; +} +a:hover { + color: green; +} + +h1:first-child{ + text-decoration:underline; + color: blue; +} + + +h2:first-child{ + color: green; +} + + +p:first-child{ + color: red; + text-align: left; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_13.css b/TPSI/sena_alessandro/css/sena_esercizio_css_13.css new file mode 100644 index 00000000..ef59c3b1 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_13.css @@ -0,0 +1,3 @@ +td:nth-child(2n){ + background-color:yellow; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_14.css b/TPSI/sena_alessandro/css/sena_esercizio_css_14.css new file mode 100644 index 00000000..dbffa377 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_14.css @@ -0,0 +1,39 @@ +#id1 { + background-color: aqua; +} +#id3 { + background-color: brown; +} + +#id5 { + background-color: #BD93BD; +} + +#id7 { + background-color: #FABC2A; +} +#id6 { + background-color: rgb(147, 189, 174); +} +#id4{ + background-color: rgb(147, 38, 255); +} +#id2{ + background-color: rgba(134, 21, 123, 0.75); +} +#id8{ + background-color: rgba(0, 5, 255, 0.89); +} + +#id9{ + background-color: hsl(120, 78%, 72%); +} +#id10{ + background-color: hsl(0, 0%, 52%); +} +#id11{ + background-color: hsla(0, 100%, 47%, 0.21); +} +#id12{ + background-color: hsla(329, 100%, 69%, 0.43); +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_14.html b/TPSI/sena_alessandro/css/sena_esercizio_css_14.html new file mode 100644 index 00000000..87ce0956 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_14.html @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
0 00 10 20 3
1 01 11 21 3
2 02 12 22 3
3 03 13 23 3
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_15.css b/TPSI/sena_alessandro/css/sena_esercizio_css_15.css new file mode 100644 index 00000000..474eb00e --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_15.css @@ -0,0 +1,45 @@ +.red{ + background-color: red; + width: 400px; + height: 200px; +} +#violet{ + background-color: rgb(128, 0, 117); + width: 25%; + height: 150px; +} +#violet1{ + background-color: rgb(128, 0, 117); + width: 50%; + height: 150px; +} +#violet2{ + background-color: rgb(128, 0, 117); + width: 75%; + height: 150px; +} +#violet3{ + background-color: rgb(128, 0, 117); + width: 100%; + height: 150px; +} +#rett{ + background-color: rgba(#008000, 0.65); + width: 221%; + height: 221px; +} +#rett1{ + background-color: rgba(0, 128, 0, 0.65); + width: 50%; + height: 221px; +} +#rett2{ + background-color: rgba(green, 0.65); + width: 62.5%; + height: 221px; +} +#rett3{ + background-color: rgba(green, 0.65); + width: 22.2%; + height: 221px; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_15.html b/TPSI/sena_alessandro/css/sena_esercizio_css_15.html new file mode 100644 index 00000000..042657e6 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_15.html @@ -0,0 +1,18 @@ + + + + + + +
+
+
+
+
+ +
+
+
+
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_16.css b/TPSI/sena_alessandro/css/sena_esercizio_css_16.css new file mode 100644 index 00000000..1c683e1e --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_16.css @@ -0,0 +1,50 @@ +div { + margin: 10px; + border: 1px solid #000; +} + + +.rel_ass, .rel_ass2 { + width: 300px; + height: 200px; + background-image: url("../es_html/download.png"); +} + + +.ass_rel1, .ass_rel2 { + width: 50%; + height: 150px; + background-image: url("https://www.shutterstock.com/image-vector/golden-dust-light-png-bokeh-600w-2192855099.jpg"); +} + + +.repeat1, .repeat2 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: repeat; +} + + +.no_repeat1, .no_repeat2 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: no-repeat; +} + + +.repeat_x1, .repeat_x2 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: repeat-x; +} + + +.repeat_y1, .repeat_y1 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: repeat-y; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_16.html b/TPSI/sena_alessandro/css/sena_esercizio_css_16.html new file mode 100644 index 00000000..29ba707d --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_16.html @@ -0,0 +1,33 @@ + + + + + Esercizio CSS 16 + + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_17.css b/TPSI/sena_alessandro/css/sena_esercizio_css_17.css new file mode 100644 index 00000000..0948b033 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_17.css @@ -0,0 +1,17 @@ +.galleria { + display: flex; +} + + +.cella { + text-align: center; +} + +img { + width: 250px; +} + +.descrizione { + border-bottom: 5px solid red; + padding: 8px; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_17.html b/TPSI/sena_alessandro/css/sena_esercizio_css_17.html new file mode 100644 index 00000000..fe2f1472 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_17.html @@ -0,0 +1,29 @@ + + + + + + + + +
+
+ Foto +
annik Sinner in Australia
+
+
+ Foto +
Il servizio di Jannik
+
+
+ Foto +
Vittoria in Coppa Davis
+
+
+ Foto +
Sinner ATP Finals
+
+
+ + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_25.css b/TPSI/sena_alessandro/css/sena_esercizio_css_25.css new file mode 100644 index 00000000..95330b26 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_25.css @@ -0,0 +1,39 @@ + +.box { + background-color: #800080; + color: white; + width: 150px; + height: 150px; + padding: 20px; + border-radius: 8px; + font-family: Arial, sans-serif; + font-weight: bold; + box-sizing: border-box; /* Include padding nelle dimensioni */ +} + + + +.left { + float: left; + margin-right: 20px; +} + +.right { + float: right; + margin-left: 20px; +} + + +.content { + font-family: Arial, sans-serif; + font-size: 1.2rem; + line-height: 1.5; + text-align: left; +} + + +.container { + max-width: 600px; + margin: 50px auto; + overflow: auto; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/css/sena_esercizio_css_25.html b/TPSI/sena_alessandro/css/sena_esercizio_css_25.html new file mode 100644 index 00000000..97bdadc4 --- /dev/null +++ b/TPSI/sena_alessandro/css/sena_esercizio_css_25.html @@ -0,0 +1,23 @@ + + + + + + Esercizio CSS 25 + + + + +
+
One
+ +
Two
+ +

+ The two boxes should float to either side of this text. + The two boxes should float to either side of this text. +

+
+ + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/Sena_esercizio_css_02.html b/TPSI/sena_alessandro/html/Sena_esercizio_css_02.html new file mode 100644 index 00000000..291d5cec --- /dev/null +++ b/TPSI/sena_alessandro/html/Sena_esercizio_css_02.html @@ -0,0 +1,62 @@ + + + + + + + + + + Es 2 + + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/html/Sena_esercizio_css_03.html b/TPSI/sena_alessandro/html/Sena_esercizio_css_03.html new file mode 100644 index 00000000..4fa5acc3 --- /dev/null +++ b/TPSI/sena_alessandro/html/Sena_esercizio_css_03.html @@ -0,0 +1,60 @@ + + + + + + + + + + + Es 3 + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/html/Sena_esercizio_css_10.html b/TPSI/sena_alessandro/html/Sena_esercizio_css_10.html new file mode 100644 index 00000000..afdcfbb5 --- /dev/null +++ b/TPSI/sena_alessandro/html/Sena_esercizio_css_10.html @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + Esercizio 10 + + + + +

Reti di Calcolatori

+

localhost

+
+

In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. + Using the loopback interface bypasses any local network interface hardware. +

+
+

Loopback

+
+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+
+

Name resolution

+

IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers.

+

In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally.

+

In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost.

+

IETF standards

+

The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System:

+

An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). +

+

In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it.

+

Packet processing

+

The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces.

+

Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address.

+

Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+

special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address.

+

One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/Sena_esercizio_css_11.html b/TPSI/sena_alessandro/html/Sena_esercizio_css_11.html new file mode 100644 index 00000000..85c03096 --- /dev/null +++ b/TPSI/sena_alessandro/html/Sena_esercizio_css_11.html @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + Esercizio 11 + + + + +

Reti di Calcolatori

+

localhost

+
+
+

In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. + Using the loopback interface bypasses any local network interface hardware. +

+
+
+

Loopback

+
+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+
+

Name resolution

+
+
+
+

IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+
+
+
+

The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers.

+

In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally.

+

In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost.

+

IETF standards

+

The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System:

+

An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). +

+

In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it.

+

Packet processing

+

The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces.

+

Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address.

+

Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+

special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address.

+

One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/Sena_esercizio_css_12.html b/TPSI/sena_alessandro/html/Sena_esercizio_css_12.html new file mode 100644 index 00000000..c5fb319a --- /dev/null +++ b/TPSI/sena_alessandro/html/Sena_esercizio_css_12.html @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + Esercizio 12 + + + + +

Reti di Calcolatori

+

localhost

+
+
+

In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. + Using the loopback interface bypasses any local network interface hardware. +

+
+
+
+

Loopback

+
+
+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+
+

Name resolution

+
+
+
+

IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+
+
+
+

The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers.

+

In addition to the mapping of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally.

+

In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost.

+

IETF standards

+

The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System:

+

An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). +

+

In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it.

+

Packet processing

+

The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces.

+

Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address.

+

Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+

special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address.

+

One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/Sena_esercizio_html_02.html b/TPSI/sena_alessandro/html/es_html/Sena_esercizio_html_02.html new file mode 100644 index 00000000..7d0fcf98 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/Sena_esercizio_html_02.html @@ -0,0 +1,59 @@ + + + + + + + + + + Es 2 + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/html/es_html/Sena_esercizio_html_11.html b/TPSI/sena_alessandro/html/es_html/Sena_esercizio_html_11.html new file mode 100644 index 00000000..d9dab412 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/Sena_esercizio_html_11.html @@ -0,0 +1,218 @@ + + + + Esercizio_HTML_11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

MENU' RISTORANTE

ANTIPASTO

Bruschetta bianca€ 1,00
Bruschetta al pomodoro€ 1,50
Bruschetta al tartufo€ 2,00
Prosciutto€ 5,00
Italiana€ 7,00
Prosciutto e Mozzarella di bufala€ 7,50
"Le Cannucceta"€ 8,50
Vegetariano€ 7,00
Tagliere di formaggi€ 7,50
+ Max Tagliere di Formaggi e salumi + (per due persone) + € 18,00
Prosciutto e melone€ 7,50

PRIMI PIATTI

Fettuccine al pomodoro€ 6,50
Ravioloni in salsa rosa€ 7,50
Gnocchi fatti in casa€ 7,50
Fettuccine ai funghi porcini€ 8,00
Gnocchetti al cinghiale€ 7,50
Gnocchi di patate al tartufo€ 8,00
Pici al tartufo€ 8,00
Fagottini al tartufo€ 8,00
Ass. Doppio (ravioli e fettuccine ai funghi porcini)€ 1,00
Fettuccine porcini e tartufo€ 8,50

SECONDI PIATTI

Caprese (mozzarella di bufala, pomodoro)€ 8,00
Salsicce porzione€ 7,50
Braciole di maiale€ 7,50
Lombata di vitella€ 12,00
Bistecca di manzo a porzione€ 13,00
Bistecca di manzo a pesol'etto€ 3,50
Fiorentina€ 20,00
Angus (manzo argentino) porzione€ 13,00
Angus a pesol'etto€ 4,00
Bisonte canadese porzione€ 15,00
Bisonte canadese a pesol'etto€ 7,00
Abbacchio scottadito€ 12,00
Misto carne€ 10,00
Filetto€ 14,00
Scamorza€ 8,00
Tagliata di Angus con ruchetta e aceto balsamico€ 13,00
Taglia di Angus con funghi porcini€ 15,00
Bistecca Tomahawk€ 27,00
Cotoletta e patate€ 7,50
Bistecca Sashi€ 28,00

CONTORNI

Insalata€ 3,50
Patate€ 3,50
Cicoria€ 3,50
Ruchetta con pomodori€ 3,50
+ + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/es17.html b/TPSI/sena_alessandro/html/es_html/es17.html new file mode 100644 index 00000000..874b08f6 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/es17.html @@ -0,0 +1,220 @@ + + + + Esercizio_HTML_17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/es_html_10a.html b/TPSI/sena_alessandro/html/es_html/es_html_10a.html new file mode 100644 index 00000000..b68c218d --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/es_html_10a.html @@ -0,0 +1,47 @@ + + + + Esercizio_HTML_10a + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Q.tàDescrizioneCosto UnitarioTotale
3mouse15 €45 €
3tastiera 105 tasti20 €60 €
1stampante deskjet colori110 €110 €
1scanner A4 colori220 €220 €
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/esercizio_html_07.html b/TPSI/sena_alessandro/html/es_html/esercizio_html_07.html new file mode 100644 index 00000000..f304e30d --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/esercizio_html_07.html @@ -0,0 +1,102 @@ + + + + Esercizio_HTML_07 + + +

Local host

+

localhost

+

In computer networking, localhost is a hostname that refers to the current computer used to + access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. +

+ primo web server +

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+

Name resolution

+

+ IPv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those Ip addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost + + The name may also be resolved by Domain Name System (DNS) servers, but queries for this name should be resolved locally, and should not be forwarded to remote name servers. + + In addition to the localhost" of localhost to the loopback addresses (127.0.0.1 and ::1), localhost may also be mapped to other IPv4 (loopback) addresses and it is also possible to assign other, or additional, names to any loopback address. The mapping of localhost to addresses other than the designated loopback address range in the hosts file or in DNS is not guaranteed to have the desired effect, as applications may map the name internally. + + In the Domain Name System, the name localhost is reserved as a top-level domain name, originally set aside to avoid confusion with the hostname used for loopback purposes.[3] IETF standards prohibit domain name registrars from assigning the name localhost. +

+

IETF standards

+

+ The name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standardsets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return
+ the appropriate loopback addresses, +
and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic,


caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for
'localhost' in +
spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are < reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+ primo web server +

Packet processing

+

+ The processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must > not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any


other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped.
Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets & they may be malicious and any problems they might cause can be avoided by applying bogon filtering. +

+

Special cases

+

+ The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection,


in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users. +

+ + primo web server + +
Usa rm
+             per rimuovere un file 
+             dal cmd
+        
+

VOTI

+

+ Studente 1 8 su 10
+ Marcolionooo 23 quasi sufficente
+ Gabriele SUPERATO LE ASPETTATIVE
+ Alessandro 8 su 12
+ Marta 3 su 10
+

+

ANDAMENTO VOTI

+

+ Studente 1 3 di 13/
+ Marcolionooo 23 quasi sufficente
+ Gabriele SUPERATO LE ASPETTATIVE
+ Alessandro SEI UN DURO
+ Marta si andato male
+

+

liste ordinate

+

+

    +
  1. loopback: NETWORK
  2. +
  3. Name resolution: following lines
  4. +
+

+

liste non ordinata

+

+

+

+
© loal host
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/pagina.html b/TPSI/sena_alessandro/html/es_html/pagina.html new file mode 100644 index 00000000..58969297 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/pagina.html @@ -0,0 +1,28 @@ + + + + + + + + + + + + Prima pagina HTML + + + + +
+

prova

+

+
+ diff --git a/TPSI/sena_alessandro/html/es_html/png/System-users-3.svg.png b/TPSI/sena_alessandro/html/es_html/png/System-users-3.svg.png new file mode 100644 index 00000000..0d1d7a10 Binary files /dev/null and b/TPSI/sena_alessandro/html/es_html/png/System-users-3.svg.png differ diff --git a/TPSI/sena_alessandro/html/es_html/png/logo_agnelli_sito.png b/TPSI/sena_alessandro/html/es_html/png/logo_agnelli_sito.png new file mode 100644 index 00000000..f7f6acf9 Binary files /dev/null and b/TPSI/sena_alessandro/html/es_html/png/logo_agnelli_sito.png differ diff --git a/TPSI/sena_alessandro/html/es_html/png/png-clipart-mozilla-foundation-firefox-web-browser-firefox-orange-computer-wallpaper-thumbnail.png b/TPSI/sena_alessandro/html/es_html/png/png-clipart-mozilla-foundation-firefox-web-browser-firefox-orange-computer-wallpaper-thumbnail.png new file mode 100644 index 00000000..2ba98598 Binary files /dev/null and b/TPSI/sena_alessandro/html/es_html/png/png-clipart-mozilla-foundation-firefox-web-browser-firefox-orange-computer-wallpaper-thumbnail.png differ diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_03.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_03.html new file mode 100644 index 00000000..ad046211 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_03.html @@ -0,0 +1,60 @@ + + + + + + + + + + Es 3 + +

local host

+

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+

+

Name resolution

+

+ Pv4 network standards reserve the entire address 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or moreIP addresses is normally configured by the following lines in the operating system's host file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IAn IPv4 or IPv6address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_04.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_04.html new file mode 100644 index 00000000..83dee1f4 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_04.html @@ -0,0 +1,62 @@ + + + + + + + + + + Es 3 + +

local host

+

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1. +

+

+

Name resolution

+

+ Pv4 network standards reserve the entire address 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or moreIP addresses is normally configured by the following lines in the operating system's host file: + 127.0.0.1 localhost + ::1 localhost +

+ primo web server +

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IAn IPv4 or IPv6address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+ icona di due persone +

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10c.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10c.html new file mode 100644 index 00000000..03ea3f40 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10c.html @@ -0,0 +1,34 @@ + + + + Esercizio_HTML_10c + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Quickbrown foxjumps
over thelazydogand
thenitfall
prey to a hunter
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10d.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10d.html new file mode 100644 index 00000000..5327ff1b --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10d.html @@ -0,0 +1,39 @@ + + + + Esercizio_HTML_10a + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + +
+
+ yes +
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10f.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10f.html new file mode 100644 index 00000000..89286cdb --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_10f.html @@ -0,0 +1,38 @@ + + + + Esercizio_HTML_10f + + + + + + + + + + + + + + + + + + + + + + + + + +
TABELLA
+ + + + + +
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_12.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_12.html new file mode 100644 index 00000000..2d299684 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_12.html @@ -0,0 +1,39 @@ + + + + Esercizio_HTML_12 + + + +

inserisci i tui dati:

+
+ + + + +

inserisci la tua data di nascita:

+
+

che lavoro svolgi?:

+ +
+ +
+ +

+

a che giochi ti piace giocare?:

+ +
+ +
+ +
+ +
+ +
+ +
+ + + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_13.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_13.html new file mode 100644 index 00000000..b770b450 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_13.html @@ -0,0 +1,36 @@ + + + + Esercizio_HTML_12 + + + + + + + + + + + + + +
+

inserisci il tuo sesso:

+ +
+ +
+

+ + + +
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_14.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_14.html new file mode 100644 index 00000000..600741a0 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_14.html @@ -0,0 +1,75 @@ + + + + Esercizio_HTML_14 + + + +

inserisci i tui dati:

+
+ + + + +

inserisci la tua data di nascita:

+
+

che lavoro svolgi?:

+ +
+ +
+ +

+
+ + + +

qual'è il tuo colore pereferito?

+

+

quanto sei alto?

+

+

quanti anni hai? da 0 a 110

+

+

inserisci il tuo peso in kg

+

+ +

+

a che giochi ti piace giocare?:

+ +
+ +
+ +
+ +
+ +

+ + +

+

che tipo di scarpe ti piacciono

+ +

+

+ +
+ + + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_15.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_15.html new file mode 100644 index 00000000..d22db200 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_15.html @@ -0,0 +1,71 @@ + + + + Esercizio_HTML_15 + + + +

inserisci i tuoi dati personali:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +


+
+

+

+ per inviare: +

+
+

+ per resettare: +

+ +
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_16.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_16.html new file mode 100644 index 00000000..93bc6901 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_16.html @@ -0,0 +1,75 @@ + + + + Esercizio_HTML_16 + + +
+
+ Dati Personali + + + + +

+ + +

+ + +

+ + +

+ + +
+ + + + + + + +

+ + +

+ + +

+ + +
+ + + + +
+
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_17.html b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_17.html new file mode 100644 index 00000000..2965204a --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_esercizio_html_17.html @@ -0,0 +1,166 @@ + + + + Esercizio_HTML_17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+

ISTITUTO INTERNAZIONALE
+ EDOARDO AGNELLI di Torino

+ Tel. 011/6198311 - Fax 011/6198421
+ E-mail: agnelli@agnelli.it - Sito web:www.agnelli.it
+ CODICE FISCALE: 00493420012

istituto Tecnico + Tecnologico + 10135 TORINO
+ Corso Unione Sovietica, 312 +
+ Liceo Scientifico
+ 10135 TORINO
+ Corso Unione Sovietica, 312 +
+

CONVENZIONE PERCORSI PER LE
+ COMPETENZE TRASVERSALI E PER
+ L’ORIENTAMENTO (PCTO)

+
+

Prot.N°

+
Tra
+ l’Istituto Internazionale "EDOARDO AGNELLI”, con sede in Torino, C.so
+ Unione Sovietica 312
, C.F. 00493420012, Tel. 0116198311, d’ora in poi
+ denominato “Istituzione scolastica”, rappresentato da Prof. Giovanni Bosco
+ nato a Poirino (TO) il 14/04/1962, codice fiscale BSCGNN62D146777N +
e
+ l’Azienda …………………………..….………, con sede in ………………………….
+ …………….……- P.IVA …………………………tel. ………………., d’ora in poi
+ denominato “Soggetto ospitante”, rappresentato dal Direttore
+ Operativo……………………………..nato a..……………….il ………………., codice
+ fiscale ……………………………..nella sua qualità di Legale Rappresentante. +

Premesso che

- ai sensi dell’art. 1 D. Lgs. 77/05, l’alternanza costituisce una modalità di
+ realizzazione dei corsi nel secondo ciclo del sistema d’istruzione e formazione,
1
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/es_html/sena_htl_10b.html b/TPSI/sena_alessandro/html/es_html/sena_htl_10b.html new file mode 100644 index 00000000..a0f3a938 --- /dev/null +++ b/TPSI/sena_alessandro/html/es_html/sena_htl_10b.html @@ -0,0 +1,63 @@ + + + + Esercizio_HTML_10b + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Servizi ecosistemiciCodice
Servizi di fornitura ColtivazioniF1
Foraggio, pascoloF2
Specie cacciabili/pesiF3
Materie prime (legno, fibre..)F4
Funghi, frutti di bosco, piante commestibiliF5
Servizi di regolazione Servizio del carbonioR1
regolazione del clima locale/purificazione dell'areaR2
Regolazione delle acque (ricarica delle falde)R3
purificazione dell'acquaR4
purificazione dell'erosione e dissesti geologici (fane, instabilità, versanti)R5
protezione dei dissesti idrologici (piene, inondazioni)R6
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/esercizio_html_02.html b/TPSI/sena_alessandro/html/esercizio_html_02.html new file mode 100644 index 00000000..7d0fcf98 --- /dev/null +++ b/TPSI/sena_alessandro/html/esercizio_html_02.html @@ -0,0 +1,59 @@ + + + + + + + + + + Es 2 + +

local host

+

+ In computer networking, localhost is a hostname that refers to the current computer used to access it. It is used to access the network services that are running on the host via the loopback network interface. Using the loopback interface bypasses any local network interface hardware. + +

+

Name resolution

+

+ Pv4 network standards reserve the entire address block 127.0.0.0/8 (more than 16 million addresses) for loopback purposes.[2] That means any packet sent to any of those addresses is looped back. The address 127.0.0.1 is the standard address for IPv4 loopback traffic; the rest are not supported by all operating systems. However, they can be used to set up multiple server applications on the host, all listening on the same port number. The IPv6 standard assigns only a single address for loopback: ::1. + The resolution of the name localhost to one or more IP addresses is normally configured by the following lines in the operating system's hosts file: + 127.0.0.1 localhost + ::1 localhost +

+

Loopback

+

The local loopback mechanism may be used to run a network service on a host without requiring a physical network interface, or without making the service accessible from the networks the computer may be connected to. For example, a locally installed website may be accessed from a Web browser by the URL http://localhost to display its home page. + The name localhost normally resolves to the IPv4 loopback address 127.0.0.1, and to the IPv6 loopback address ::1.

+ +

+ IETF standards +

+

+ he name localhost is reserved for loopback purposes by RFC 6761 (Special-Use Domain Names),[4] which achieved the Proposed Standard maturity level in February 2013. The standard sets forth a number of special considerations governing the use of the name in the Domain Name System: + + An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address, which is specified in a separate standard. + Applications may resolve the name to a loopback address themselves, or pass it to the local name resolver mechanisms. + When a name resolver receives an address (A or AAAA) query for localhost, it should return the appropriate loopback addresses, and negative responses for any other requested record types. Queries for localhost should not be sent to caching name servers. + To avoid burdening the Domain Name System root servers with traffic, caching name servers should never request name server records for localhost, or forward resolution to authoritative name servers. + DNS registrars are precluded from delegating domain names in the top-level domain localhost. + When authoritative name servers receive queries for 'localhost' in spite of the provisions mentioned resolve them appropriately. + The IPv4 loopback addresses are reserved within the IPv4 address space by the IETF "Special Use IPv4 Addresses" standard (RFC 5735).[5] The reservation can be traced back to the November 1986 "Assigned Numbers" standard (RFC 990). + + In contrast, the IETF "IP Version 6 Addressing Architecture" standard (RFC 4291) reserves the single IPv6 loopback address ::1 within the IPv6 address space. The standard precludes the assignment of that address to any physical interface, as well as its use as the source or destination address in any packet sent to remote hosts. Any such packet that is erroneously transmitted is not supposed to be routed, and should be dropped by all routers or hosts that receive it. +

+

Packet processing

+

he processing of any packet sent to a loopback address, is implemented in the link layer of the TCP/IP stack. Such packets are never passed to any network interface controller (NIC) or hardware device driver and must not appear outside of a computing system, or be routed by any router. This permits software testing and local services in the absence of any hardware network interfaces. + + Looped-back packets are distinguished from any other packets traversing the TCP/IP stack only by the special IP address they were addressed to. Thus, the services that ultimately receive them respond according to the specified destination. For example, an HTTP service could route packets addressed to 127.0.0.99:80 and 127.0.0.100:80 to different Web servers, or to a single server that returns different web pages. To simplify such testing, the hosts file may be configured to provide appropriate names for each address. + + Packets received on a non-loopback interface with a loopback source or destination address must be dropped. Such packets are sometimes referred to as Martian packets.[6] As with any other bogus packets, they may be malicious and any problems they might cause can be avoided by applying bogon filtering.

+ +

Special cases

+

The releases of the MySQL database differentiate between the use of the hostname localhost and the use of the addresses 127.0.0.1 and ::1.[7] When using localhost as the destination in a client connector interface of an application, the MySQL application programming interface connects to the database using a Unix domain socket, while a TCP connection via the loopback interface requires the direct use of the explicit address. + + One notable exception to the use of the 127.0.0.0/8 addresses is their use in Multiprotocol Label Switching (MPLS) traceroute error detection, in which their property of not being routable provides a convenient means to avoid delivery of faulty packets to end users.

+ + + + + diff --git a/TPSI/sena_alessandro/html/openday.tnx b/TPSI/sena_alessandro/html/openday.tnx new file mode 100644 index 00000000..b817fa03 --- /dev/null +++ b/TPSI/sena_alessandro/html/openday.tnx @@ -0,0 +1,2 @@ +questi sono dei codici git per immettere dei file online su git hub +per lavorare con altri evenutali developers. diff --git a/TPSI/sena_alessandro/html/pagina.html b/TPSI/sena_alessandro/html/pagina.html new file mode 100644 index 00000000..58969297 --- /dev/null +++ b/TPSI/sena_alessandro/html/pagina.html @@ -0,0 +1,28 @@ + + + + + + + + + + + + Prima pagina HTML + + + + +
+

prova

+

+
+ diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_13.css b/TPSI/sena_alessandro/html/sena_esercizio_css_13.css new file mode 100644 index 00000000..ef59c3b1 --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_13.css @@ -0,0 +1,3 @@ +td:nth-child(2n){ + background-color:yellow; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_14.css b/TPSI/sena_alessandro/html/sena_esercizio_css_14.css new file mode 100644 index 00000000..dbffa377 --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_14.css @@ -0,0 +1,39 @@ +#id1 { + background-color: aqua; +} +#id3 { + background-color: brown; +} + +#id5 { + background-color: #BD93BD; +} + +#id7 { + background-color: #FABC2A; +} +#id6 { + background-color: rgb(147, 189, 174); +} +#id4{ + background-color: rgb(147, 38, 255); +} +#id2{ + background-color: rgba(134, 21, 123, 0.75); +} +#id8{ + background-color: rgba(0, 5, 255, 0.89); +} + +#id9{ + background-color: hsl(120, 78%, 72%); +} +#id10{ + background-color: hsl(0, 0%, 52%); +} +#id11{ + background-color: hsla(0, 100%, 47%, 0.21); +} +#id12{ + background-color: hsla(329, 100%, 69%, 0.43); +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_14.html b/TPSI/sena_alessandro/html/sena_esercizio_css_14.html new file mode 100644 index 00000000..87ce0956 --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_14.html @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
0 00 10 20 3
1 01 11 21 3
2 02 12 22 3
3 03 13 23 3
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_15.css b/TPSI/sena_alessandro/html/sena_esercizio_css_15.css new file mode 100644 index 00000000..474eb00e --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_15.css @@ -0,0 +1,45 @@ +.red{ + background-color: red; + width: 400px; + height: 200px; +} +#violet{ + background-color: rgb(128, 0, 117); + width: 25%; + height: 150px; +} +#violet1{ + background-color: rgb(128, 0, 117); + width: 50%; + height: 150px; +} +#violet2{ + background-color: rgb(128, 0, 117); + width: 75%; + height: 150px; +} +#violet3{ + background-color: rgb(128, 0, 117); + width: 100%; + height: 150px; +} +#rett{ + background-color: rgba(#008000, 0.65); + width: 221%; + height: 221px; +} +#rett1{ + background-color: rgba(0, 128, 0, 0.65); + width: 50%; + height: 221px; +} +#rett2{ + background-color: rgba(green, 0.65); + width: 62.5%; + height: 221px; +} +#rett3{ + background-color: rgba(green, 0.65); + width: 22.2%; + height: 221px; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_15.html b/TPSI/sena_alessandro/html/sena_esercizio_css_15.html new file mode 100644 index 00000000..042657e6 --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_15.html @@ -0,0 +1,18 @@ + + + + + + +
+
+
+
+
+ +
+
+
+
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_16.css b/TPSI/sena_alessandro/html/sena_esercizio_css_16.css new file mode 100644 index 00000000..1c683e1e --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_16.css @@ -0,0 +1,50 @@ +div { + margin: 10px; + border: 1px solid #000; +} + + +.rel_ass, .rel_ass2 { + width: 300px; + height: 200px; + background-image: url("../es_html/download.png"); +} + + +.ass_rel1, .ass_rel2 { + width: 50%; + height: 150px; + background-image: url("https://www.shutterstock.com/image-vector/golden-dust-light-png-bokeh-600w-2192855099.jpg"); +} + + +.repeat1, .repeat2 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: repeat; +} + + +.no_repeat1, .no_repeat2 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: no-repeat; +} + + +.repeat_x1, .repeat_x2 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: repeat-x; +} + + +.repeat_y1, .repeat_y1 { + width: 400px; + height: 200px; + background-image: url("https://pixabay.com/it/illustrations/banner-png-rosso-2383908/"); + background-repeat: repeat-y; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_16.html b/TPSI/sena_alessandro/html/sena_esercizio_css_16.html new file mode 100644 index 00000000..29ba707d --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_16.html @@ -0,0 +1,33 @@ + + + + + Esercizio CSS 16 + + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_17.css b/TPSI/sena_alessandro/html/sena_esercizio_css_17.css new file mode 100644 index 00000000..0948b033 --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_17.css @@ -0,0 +1,17 @@ +.galleria { + display: flex; +} + + +.cella { + text-align: center; +} + +img { + width: 250px; +} + +.descrizione { + border-bottom: 5px solid red; + padding: 8px; +} \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sena_esercizio_css_17.html b/TPSI/sena_alessandro/html/sena_esercizio_css_17.html new file mode 100644 index 00000000..fe2f1472 --- /dev/null +++ b/TPSI/sena_alessandro/html/sena_esercizio_css_17.html @@ -0,0 +1,29 @@ + + + + + + + + +
+
+ Foto +
annik Sinner in Australia
+
+
+ Foto +
Il servizio di Jannik
+
+
+ Foto +
Vittoria in Coppa Davis
+
+
+ Foto +
Sinner ATP Finals
+
+
+ + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sito_protfolio/educazoione_civica.html b/TPSI/sena_alessandro/html/sito_protfolio/educazoione_civica.html new file mode 100644 index 00000000..13bfad46 --- /dev/null +++ b/TPSI/sena_alessandro/html/sito_protfolio/educazoione_civica.html @@ -0,0 +1,10 @@ + + + + + + ed_civica + + +

IN ARRIVO

+ diff --git a/TPSI/sena_alessandro/html/sito_protfolio/index.css b/TPSI/sena_alessandro/html/sito_protfolio/index.css new file mode 100644 index 00000000..817dea57 --- /dev/null +++ b/TPSI/sena_alessandro/html/sito_protfolio/index.css @@ -0,0 +1,43 @@ + + body { + font-family: Arial, sans-serif 2F4RG5GT; + margin: 0; + padding: 0; + background-color: #f0f0f0; /* Sfondo molto chiaro */ + text-align: center; /* Centra tutto il testo */ + } + header { + background-color: #8A1314; /* Sfondo rosso per l'intestazione */ + color: white; + padding: 20px 0; + } + h1 { + font-size: 3em; /* Titolo principale molto grande */ + margin: 0; + } + h2 { + color: #8A1314; /* Colore rosso per i sottotitoli */ + margin-top: 40px; + width: 100%; + height: 10wbn 0%; + } + p { + font-size: 1.2em; /* Testo un po' più grande */ + margin: 15px auto; + width: 80%; /* Fa in modo che il testo non sia troppo largo */ + } + a { + color: #AC1819; /* Colore rosso scuro per i link */ + font-weight: bold; + text-decoration: none; /* Rimuove la linea sotto il link */ + } + + .foto{ + padding: 100px; + text-align: center; + width: 50%; + height: 50%; + } + .centro{ + text-align: center; + } diff --git a/TPSI/sena_alessandro/html/sito_protfolio/index.html b/TPSI/sena_alessandro/html/sito_protfolio/index.html new file mode 100644 index 00000000..3186623b --- /dev/null +++ b/TPSI/sena_alessandro/html/sito_protfolio/index.html @@ -0,0 +1,44 @@ + + + + + + + sito prot foglio + + + +
+

Alessandro Sena

+ +

+ Home | + Educazione Civica +

+
+ + + +
+
+ + + +
+
+ + + + +
+

L'esperienze trattate per EDUCAZIONE CIVICA

+
+ + + + +
+ + + + \ No newline at end of file diff --git a/TPSI/sena_alessandro/html/sito_protfolio/pcto.html b/TPSI/sena_alessandro/html/sito_protfolio/pcto.html new file mode 100644 index 00000000..4d0af53c --- /dev/null +++ b/TPSI/sena_alessandro/html/sito_protfolio/pcto.html @@ -0,0 +1,10 @@ + + + + + + PCTO + + +

IN ARRIVO

+ diff --git a/TPSI/sena_alessandro/html/sito_protfolio/png/EC.png b/TPSI/sena_alessandro/html/sito_protfolio/png/EC.png new file mode 100644 index 00000000..54aee3b1 Binary files /dev/null and b/TPSI/sena_alessandro/html/sito_protfolio/png/EC.png differ diff --git a/TPSI/sena_alessandro/html/sito_protfolio/png/EC_copertina.png b/TPSI/sena_alessandro/html/sito_protfolio/png/EC_copertina.png new file mode 100644 index 00000000..ad717b7b Binary files /dev/null and b/TPSI/sena_alessandro/html/sito_protfolio/png/EC_copertina.png differ