emby_jellyfin

解决 Docker 安装 Jellyfin 封面图和部分中文字幕变方块 在容器中安装中文字体 1 2 3 apt update apt install fonts-noto-cjk-extra reboot 重新生成封面 在封面图上选择“修改图片”,删除已有的封面图。然后在

OCP

How to setup OCP environment Openshift Website Install OCP based on the official documents Red Hat OpenShift Local Install the cluster with Assisted Installer Install OpenShift clusters on bare metal Install OpenShift on a single node (SNO) Install OCP with Balazs’ script Install a vm Single Node OpenShift (SNO) Install a vm control/worker cluster Install a bare mental cluster (Need iDRAC9) Openshift Website Here is the RedHat Hybird Cloud Console and latest install doc.

call path

Local deliver 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 - ip_local_deliver - nf_hook - if (hook_head) -> nf_hook_slow() -> nf_hook_entry_hookfn() - ipvlan_nf_input() - ip_local_deliver_finish - ip_protocol_deliver_rcu - raw_local_deliver - raw_v4_input - raw_v4_match() - ipprot = rcu_dereference(inet_protos[protocol]); - ip6_input - nf_hook - if (hook_head) -> nf_hook_slow() -> nf_hook_entry_hookfn() - ipvlan_nf_input() - ip6_input_finish - ip6_protocol_deliver_rcu - raw6_local_deliver - ipv6_raw_deliver - raw_v6_match - ipprot->handler New/Del addr 1 2 3 4 5 6 7 8 9 10 11 12 13 - inet_rtm_deladdr - __inet_del_ifa - fib_del_ifaddr /* remove all routes and add back later */ - fib_sync_down_addr - fib_flush - fib_table_flush - inet6_rtm_deladdr - inet6_addr_del - ipv6_del_addr - ipv6_ifa_notify - cleanup_prefix_route - rt6_remove_prefsrc New/Del route 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 struct fib_nh { struct fib_nh_common nh_common; #define fib_nh_weight nh_common.

ip xfrm

key words Dir in, out, fwd difference security policy syntax meaning output policy dir out SP works as a selector on outgoing packets to select which are to be encrypted+encapsulated and which not input policy dir in SP works as a selector on incoming packets which already have been decrypted+decapsulated and have a destination IP local on the system forward policy dir fwd SP works as a selector on incoming packets which already have been decrypted+decapsulated and have a destination IP which is not local, thereby packets which are to be forwarded (routed) So:

vrf

Virtual Routing and Forwarding (VRF) impacts only Layer 3. Setup VRF device is created with an association to a FIB table. 1 2 ip link add vrf-blue type vrf table 10 ip link set dev vrf-blue up Set the default route for the table (and hence default route for the VRF): 1 ip route add table 10 unreachable default metric 4278198272 Enslave L3 interfaces to a VRF device: 1 ip link set dev veth1 master vrf-blue Add additional VRF routers: 1 2 3 ip route add table 10 .