Package: accel-ppp Priority: optional Section: devel Installed-Size: 1725 Maintainer: Dmitry Kozlov Architecture: amd64 Version: 1.12.0-260-g19c36e5 Depends: libc6 (>= 2.34), libssl3 (>= 3.0.5), libpcre3 (>= 8.39), liblua5.3-0 Filename: pool/main/a/accel-ppp/accel-ppp_1.12.0-260-g19c36e5+cx1_amd64.deb Size: 487426 MD5sum: e9ad2929aa725cd7c3d3c0bdc5855756 SHA1: c58166ebe62c004f0e50a9c20fe64939a47d57dc SHA256: 965e3520739e2aa829fdc87686caede4bc45b391a77c16e527de07001fd9cafc SHA512: 07b2377b0518a18f4a0d04b351cf260eef12ee51e6cb6b0cff59beae9b7cb27e249d1be089af3d9a5480d9de9f1ebdd40edb7e9af6588a24b04a4a9dbd24dbc6 Description: PPtP/L2TP/PPPoE/SSTP server for Linux Overview -------- The ACCEL-PPP v1.0 is completly new implementation of PPTP/PPPoE/L2TP/SSTP which was written from scratch. Userspace daemon has its own PPP implementation, so it does not uses pppd and one process (multi-threaded) manages all connections. ACCEL-PPP uses kernel-mode implementations of pptp/l2tp/pppoe and user-mode of sstp. . . Features -------- 1. Modular architecture 2. High-performance multi-threaded I/O core 3. Supported PPTP 4. Supported PPPoE (including TR-101 extension) 5. Supported L2TPv2 (without IPsec) 5. Radius authentication/accounting 6. Radius DM/CoA extention 7. Supported authentication types: PAP, CHAP (md5), Microsoft CHAP Extentions (including version 2), not supported - EAP 8. Supported MPPE 9. Compression is not supported 10. Extensible logging engine with per session logging support, implemented log to file, log to remote host and log to PostgreSQL targets 11. Extensible user/password database, implemented Radius, pppd compatible chap-secrets sources 12. Extensible IP pool, implemented Radius, chap-secrets and static pools 13. Supported pppd compatible ip-up/ip-down scripts 14. Builtin tbf/htb shaper manager 15. Command line interface via telnet 16. SNMP support (master or subagent via AgentX) 17. Supported SSTP . . Requirment ---------- 1. modern linux distribution 2. kernel-2.6.25 or later 4. cmake-2.6 or later 5. libnl-2.0 or probably later (required for builtin shaper) 6. libcrypto-0.9.8 or probably later (openssl-0.9.8) 7. libpcre 8. net-snmp-5.x 9. libssl-0.9.8 or probably later (openssl-0.9.8) . . Compilation and instalation ----------- Make sure you have configured kernel headers in /usr/src/linux, or specify other location via KDIR. 1. cd /path/to/accel-ppp-1.3.5 2. mkdir build 3. cd build 4. cmake [-DBUILD_DRIVER=FALSE] [-DKDIR=/usr/src/linux] [-DCMAKE_INSTALL_PREFIX=/usr/local] [-DCMAKE_BUILD_TYPE=Release] [-DLOG_PGSQL=FALSE] [-DSHAPER=FALSE] [-DRADIUS=TRUE] [-DNETSNMP=FALSE] .. Please note that the double dot record in the end of the command is essential. You'll probably get error or misconfigured sources if you miss it. BUILD_DRIVER, KDIR, CMAKE_INSTALL_PREFIX, CMAKE_BUILD_TYPE, LOG_PGSQL, SHAPER, RADIUS are optional, But while pptp is not present in mainline kernel you probably need BUILD_DRIVER. For example: cmake -DBUILD_DRIVER=TRUE .. will configure sources to build pptp driver, search kernel headers at /usr/src/linux, install to /usr/local, build with no debug, pgsql and shaper support, build with radius support. 5. If you want to use chap-secrets for authentication purpose then you need to disable radius support, configure as following: cmake -DBUILD_DRIVER=TRUE -DRADIUS=FALSE .. of course you can include additional options if needed. 6. make 7. make install . . Configuration ------------- read man accel-ppp.conf . . Built-in shaper -------------- accel-ppp supports tbf and htb based shaper manager. To enable it uncomment shaper in [modules] section. It accepts radius attributes in various formats: rate, down-rate/up-rate and cisco-like. Values have to be in kilobits except cisco-like. For example: Filter-Id=1000 (means 1000Kbit both up-stream and down-stream rate) Filter-Id=2000/3000 (means 2000Kbit down-stream rate and 3000Kbit up-stream rate) To change radius attribute which containes rate information use 'attr' option, for example: [shaper] attr=My-Custom-Rate-Attribute of course this attribute have to be in radius dictionary. To specify different attributes for down-stream and up-stream rates use 'attr-down' and 'attr-up' options, for example: [shaper] attr-down=PPPD-Downstream-Speed attr-up=PPPD-Upstream-Speed . If you want to use cisco-like format configure accel-ppp as following: [shaper] vendor=Cisco attr=Cisco-AVPair and send two attributes: Cisco-AVPair=lcp:interface-config#1=rate-limit input 2000000 8000 8000 conform-action transmit exceed-action drop (which means 2000Kbit up-stream rate and 8Kb burst) Cisco-AVPair=lcp:interface-config#1=rate-limit output 2000000 8000 8000 conform-action transmit exceed-action drop (which means 2000Kbit down-stream rate and 8Kb burst) . . Advanced shaper using --------------------- 1. Burst configuration. If you not using cisco-like format then burst calculates from rate and specified burst factors. To specify burst factors use 'down-burst-factor' and 'up-burst-factor' options, for example: [shaper] down-burst-factor=1.0 up-burst-factor=10.0 which means that burst for tbf/htb qdisc will be calculated as down-stream rate multiply to 1.0 and burst for policer/htb will be calculated as up-stream rate multiply to 10.0. . 2. Time ranges. You can specify time ranges to authomatic rate reconfiguration. To specify time ranges use following sample configuration: [shaper] time-range=1,1:00-3:00 time-range=2,3:00-5:00 time-range=3,5:00-7:00 first number is time range identifier. To specify time range specific rates use following format of radius attributes: range-id,rate, range-id,down-rate/up-rate or cisco-like, for example: Filter-Id=1000 Filter-Id=1,2000 Filter-Id=2,3000 Filter-Id=3,4000 which means: set 1000Kbit by default, set 2000Kbit in time range 1, set 3000Kbit in time range 2, set 4000Kbit in time range 3. You have to pass multiple Filter-Id attributes to utilize this functionality. Or cisco-like: Cisco-AVPair=lcp:interface-config#1=rate-limit output access-group 1 1000000 8000 8000 conform-action transmit exceed-action drop Cisco-AVPair=lcp:interface-config#1=rate-limit input access-group 1 1000000 8000 8000 conform-action transmit exceed-action drop and so on... . 3. chap-secrets. If you use chap-secrets instead of radius then there is way to utilize built-in shaper too. The optional fifth column in chap-secrets file is used to pass rate information to shaper. Its format is same as for radius attributes, except you cann't utilize time ranges functionality. . . SNMP ---- SNMP is implemented using net-snmp libraries. By default accel-ppp starts in subagent mode, so make sure that net-snmp configured with subagent control turned on (read net-snmp's README.agentx for more details). Also you can start accel-ppp as master agent using following configuration: [snmp] master=1 . Usage: Place accel-pppd/extra/net-snmp/ACCEL-PPP-MIB.txt to your mibs directory. Also you can find used numerical oids in this file. 1. Requesting statistics: snmpwalk -m +ACCEL-PPP-MIB -v 2c -c local 127.0.0.1 ACCEL-PPP-MIB::accelPPPStat 2. Requesting sessions: snmptable -m +ACCEL-PPP-MIB -v 2c -c local 127.0.0.1 ACCEL-PPP-MIB::sessionsTable 3. Terminate session by session identifier (Acct-Session-ID): snmpset -m +ACCEL-PPP-MIB -v 2c -c local 127.0.0.1 ACCEL-PPP-MIB::termBySID.0 = 0000000000000001 4. Terminate session by interface name: snmpset -m +ACCEL-PPP-MIB -v 2c -c local 127.0.0.1 ACCEL-PPP-MIB::termByIfName.0 = ppp2 5. Terminaten session by IP address (Framed-IP-Address): snmpset -m +ACCEL-PPP-MIB -v 2c -c local 127.0.0.1 ACCEL-PPP-MIB::termByIP.0 = 192.168.10.10 6. Terminate session by username: snmpset -m +ACCEL-PPP-MIB -v 2c -c local 127.0.0.1 ACCEL-PPP-MIB::termByUsername.0 = user1 7. Execute cli command: snmpset -m +ACCEL-PPP-MIB -v 2c -c local 127.0.0.1 ACCEL-PPP-MIB::cli.0 = "shaper change all 1024 temp" . . chap-secrets encryption ----------------------- To enable chap-secrets encryption ablity accel-ppp must be compiled with -DCRYPTO=OPENSSL (which is default). Username field may be kept as cleartext or hashed through some hash chain. To specify hash chain use username-hash option. For example, username-hash=md5,sha1 means hash username through md5 and then binary result hash through sha1. Username have to be specified as hexadecimal dump of digest result. Password field have to be encrypted using smbencrypt (NT Hash part). Encryption is incompatible with auth_chap_md5 module. . . Warning !!! ----------- 1. The pptp driver conflicts with ip_gre driver (in kernel), so make sure that ip_gre is not built-in or loaded at run time (don't matter if you have 2.6.37 or later kernel). 2. Don't mix connections of accel-ppp and poptop's pptpd, before starting accel-ppp make sure that no connections of pptpd exists. . . Contacts -------- http://accel-ppp.org/ mail: contact@accel-ppp.org ICQ: 337258064 Jabber: dima@accel-ppp.org Package: aws-gwlbtun Maintainer: Cloud X OS Support Architecture: amd64 Version: 1-eb51d33+cx1 Filename: pool/main/a/aws-gwlbtun/aws-gwlbtun.deb Size: 130120 MD5sum: f675b331d0cc09afda75930cd3502a03 SHA1: 27edb429b315bb5c206e9243fd36e88604beae81 SHA256: 7ab1f686186772245231aeab345760a173c1268a52950c4d2581166145ea8a90 SHA512: 8da1249dfcb83074cca88fde9127d2df182f870760e756cc039f1cb04bfe745d046461b00bc9bc02d5bc3f21af56bbc51d545e388577a441c420adf73aaf4f01 Description: AWS Gateway Load Balancer Tunnel Handler Package: bash-completion Priority: standard Section: shells Installed-Size: 1355 Maintainer: Cloud X OS Support Original-Maintainer: Gabriel F. T. Gomes Architecture: all Version: 1:2.8-6+cx1 Filename: pool/main/b/bash-completion/bash-completion_2.8-6+cx1_all.deb Size: 198684 MD5sum: 9b24a7038adccfd3c1007f820026cd4c SHA1: 31e61ed15b616347ee5d6d68e81bd4405cc1dce1 SHA256: 0d2fea9917231271bbb6e7e28d183b8ee65e7930dec90e57546e530b6c0b9add SHA512: ee746c2c37ca4d56d52ec16746f97ac1733b4fa1041827bd20429fa20bb6725772b44dd8f4f6c2de94b0d969a3df7f41f440d004f7d83fbfd2dcdb6cdea51822 Description: programmable completion for the bash shell bash completion extends bash's standard completion behavior to achieve complex command lines with just a few keystrokes. This project was conceived to produce programmable completion routines for the most common Linux/UNIX commands, reducing the amount of typing sysadmins and programmers need to do on a daily basis. Homepage: https://github.com/scop/bash-completion Multi-Arch: foreign Original-Vcs-Browser: https://salsa.debian.org/debian/bash-completion Original-Vcs-Git: https://salsa.debian.org/debian/bash-completion.git Package: charon-cmd Priority: optional Section: net Installed-Size: 186 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.34), strongswan-libcharon (>= 5.9.11) Filename: pool/main/s/strongswan/charon-cmd_5.9.11-2+vyos0+cx1_amd64.deb Size: 89388 MD5sum: db40d45738406dccd3cddbee478f9296 SHA1: f21b3638e530a7e4da626c3b7c8c2163082ed283 SHA256: 5cfdd2da8fe806e35362d3f5dcbfb009ef25709ec95d7776d013cf44e0839b59 SHA512: df7e9a05457ee410c157c2135ec8859392d2ceb0a211c9f6f50e07ba924ababd9f98e1cc7fcd5ccb0bf7d1b78147646945d8c856bc803b8da68dfc5d9cce1371 Description: standalone IPsec client The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package contains the charon-cmd command, which can be used as a client to connect to a remote IKE daemon. Homepage: http://www.strongswan.org Package: charon-cmd-dbgsym Priority: optional Section: debug Installed-Size: 90 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: charon-cmd (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/charon-cmd-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 76588 MD5sum: 60ed3c43906a87479d3abecc1194b3ef SHA1: bf9bdfbf8328206ecb1cccd6d5df91d30a1c73aa SHA256: 0d7a5543b2799ab0b2a6043197399487ea59a26cfad9f95705ffaa64714d54d0 SHA512: 0a79c15198daf3e07cdcde5144eea00dc2d59b0f632a37e2de3b0a71a197f97aaa76452e65061c6ffa004a5ea25fb049f2fd6c1b917fa4191825e0055bf17849 Description: debug symbols for charon-cmd Auto-Built-Package: debug-symbols Build-Ids: d68903d00683f408cfefc1b1d642209d68ae7e9d Package: charon-systemd Priority: optional Section: net Installed-Size: 194 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), strongswan-swanctl, libc6 (>= 2.34), libsystemd0, strongswan-libcharon (>= 5.9.11) Filename: pool/main/s/strongswan/charon-systemd_5.9.11-2+vyos0+cx1_amd64.deb Size: 86012 MD5sum: ab0e5790906417370407bd164a25bb17 SHA1: c43f3a7f25a29d0d6d6f9a582b34f3023ad71f37 SHA256: 231e02af0dbf13a393e042ca431cbd74d3bd8edf59a170e184df6b3ca7c685e6 SHA512: c95a50825bd2d8c6df3e2d5988c1263d535999f5eb4c44c89e759d0c95bd4f8c0abae1621baffc68acd8e462b9cbb81fb662d3823e8c2b4ae2e9c93636bc492f Description: strongSwan IPsec client, systemd support The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package contains the charon-systemd files. Homepage: http://www.strongswan.org Package: charon-systemd-dbgsym Priority: optional Section: debug Installed-Size: 65 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: charon-systemd (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/charon-systemd-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 52288 MD5sum: fcfe6d572e280f22f0c972faf58e8c0e SHA1: c1ef00a48ab9b857e9f293923f59e0bab4969173 SHA256: b10555a9669a40ee561f6a635c5d37dd19b6111922f5b15f6d9abc4fd6ab9489 SHA512: d715adb6d8400e0e7dbd1d526458b7d8f32aef86e438650287e0b326f43454552c25a3e38e97541f2b6e1d7530ec1cdbbfd52bed2252c8470ca60022c311680a Description: debug symbols for charon-systemd Auto-Built-Package: debug-symbols Build-Ids: cce75f835d15f8cccf4cc18e687a55045336beb8 Package: ddclient Priority: optional Section: net Installed-Size: 473 Maintainer: Cloud X OS Support Architecture: all Version: 3.11.2+vyos0+cx1 Provides: dyndns-client Depends: perl:any, debconf (>= 0.5) | debconf-2.0 Pre-Depends: init-system-helpers (>= 1.54~) Recommends: iproute2, libio-socket-ssl-perl, libio-socket-inet6-perl, libdigest-sha-perl, libjson-pp-perl Suggests: curl Filename: pool/main/d/ddclient/ddclient_3.11.2+vyos0+cx1_all.deb Size: 101944 MD5sum: e8a466364253cc4f8406c170ca3539b0 SHA1: 2599d9952bbf6ca2024e58cecce94ae255006309 SHA256: f8eb9a44196d07f5d2469dbb4816b5edf4b37c5170b2ba3dd295847910ded626 SHA512: f1d5a2c418feefa6bcb497beb7a9f48e6119cb55b26040a251271e48f9b63bddc7137713a181947504ca78ab99eb9089be8abe81d852859135321ae2b69a4a7d Description: address updating utility for dynamic DNS services This package provides a client to update dynamic IP addresses with several dynamic DNS service providers, such as DynDNS.com. . This makes it possible to use a fixed hostname (such as myhost.dyndns.org) to access a machine with a dynamic IP address. . This client supports both dynamic and (near) static services, as well as MX record and alternative name management. It caches the address, and only attempts the update when it has changed. Homepage: https://ddclient.net Package: dh-ocaml Priority: optional Section: ocaml Installed-Size: 246 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: all Version: 2.0+cx1 Provides: dh-sequence-ocaml Recommends: debhelper, ocaml Suggests: git Filename: pool/main/d/dh-ocaml/dh-ocaml_2.0+cx1_all.deb Size: 75232 MD5sum: 27ae7ff25fdcba0b8dd6592a3822ff3a SHA1: d97f0c6536b57e52dece0c88112e73badcdcb6d3 SHA256: 85cd84b7edb5959172b78ed04f9ae572613054f928ed9d17785f497ddd393510 SHA512: 15ea7017f76f65c1a69e8edd75ae3d882dbcf92c2f64162e3e8a7e57e622466cec6c8b86082be683d5f629ecc5bf30fc61ea1ceefb58f9db1f8ff06821e1b3c8 Description: helper tools for maintaining OCaml-related Debian packages dh-ocaml is a set of tools and documents to help maintaining Debian packages related to the Objective Caml (OCaml) programming language. . dh-ocaml notably contains the following components: * Makefile helpers to write debian/rules files implementing OCaml packaging best-practices (both for CDBS lovers and haters) * the Debian OCaml Packaging Policy * dh_ocaml debhelper to automatically computes dependencies among binary OCaml packages * ocaml-md5sums, the tool used to maintain the system registry of OCaml module interface checksums Multi-Arch: foreign Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/dh-ocaml Original-Vcs-Git: https://salsa.debian.org/ocaml-team/dh-ocaml.git Package: dropbear Priority: optional Section: net Installed-Size: 75 Maintainer: Cloud X OS Support Architecture: all Version: 2022.83-1+deb12u1+cx1 Replaces: dropbear-run (<< 2019.78-1~) Depends: dropbear-bin (>= 2022.83-1+deb12u1+cx1), lsb-base (>= 3.0-6) Pre-Depends: init-system-helpers (>= 1.54~) Suggests: dropbear-initramfs, runit Breaks: dropbear-run (<< 2019.78-1~) Filename: pool/main/d/dropbear/dropbear_2022.83-1+deb12u1+cx1_all.deb Size: 41044 MD5sum: e4d946c5bb0cede7d1636345760554c8 SHA1: c9956eb5095f5f5dea798f8dd80fda20d8235ffe SHA256: 2fbe9831ae31d6f44c69ffcb9480de55138afd81e33de2c1b3a1d665516fc3fd SHA512: 57d39636265f16dec48848a9c3bd727242ed859bb374d5b99ad549c100d876aae618ea74b4b245c2be33a653f0356c75f92cbb8423d2e4f24c14467ac9cff7ae Description: lightweight SSH2 server and client - startup scripts dropbear is a SSH 2 server and client designed to be small enough to be used in small memory environments, while still being functional and secure enough for general use. . It implements most required features of the SSH 2 protocol, and other features such as authentication agent forwarding. . This package provides startup scripts for the service manager. Homepage: https://matt.ucc.asn.au/dropbear/dropbear.html Multi-Arch: foreign Package: dropbear-bin Priority: optional Section: net Installed-Size: 571 Maintainer: Cloud X OS Support Architecture: amd64 Source: dropbear Version: 2022.83-1+deb12u1+cx1 Replaces: dropbear (<< 2015.68-1) Provides: ssh-server Depends: libc6 (>= 2.34), libpam0g (>= 0.99.7.1), libtomcrypt1 (>= 1.18.2), libtommath1 (>= 1.2.0), zlib1g (>= 1:1.1.4) Suggests: openssh-client Breaks: dropbear (<< 2015.68-1) Filename: pool/main/d/dropbear/dropbear-bin_2022.83-1+deb12u1+cx1_amd64.deb Size: 155816 MD5sum: 9dc63c03c3f4b67988c232cb7f3d9dcd SHA1: c1623619013eeaaa21b8b626efad762556478b8d SHA256: 6702d37dd77710538ce0792d1bf79de6149a361162f8c6b6e71aabd4c6d89118 SHA512: 6ef5c1c6b051ba9a10f187d29d12e24733a4f6cd7054ad142a3a59aece8fd5350b3d8fe23b9d20385f62eb735e47c87ca3c098536ca82483cc8176cc51c51b3f Description: lightweight SSH2 server and client - command line tools dropbear is a SSH 2 server and client designed to be small enough to be used in small memory environments, while still being functional and secure enough for general use. . It implements most required features of the SSH 2 protocol, and other features such as authentication agent forwarding. . This package provides dropbear(8), dbclient(1), dropbearkey(1) and dropbearconvert(1). Homepage: https://matt.ucc.asn.au/dropbear/dropbear.html Multi-Arch: foreign Package: dropbear-bin-dbgsym Priority: optional Section: debug Installed-Size: 645 Maintainer: Cloud X OS Support Architecture: amd64 Source: dropbear Version: 2022.83-1+deb12u1+cx1 Depends: dropbear-bin (= 2022.83-1+deb12u1+cx1) Filename: pool/main/d/dropbear/dropbear-bin-dbgsym_2022.83-1+deb12u1+cx1_amd64.deb Size: 555404 MD5sum: 476839a089c2cc7ce2a29057cec9bc70 SHA1: 051c0027028a800bfa9e0795c70119df10ecf063 SHA256: 10d5b8992d0ae21ff78f73b1b4c45aa66e353b94c4f013b826d3f44e8d8cfed6 SHA512: 80ebea5275d345604b83ee9231ce5a8951bf19a715a9378f94748eded750bbcd69945897c94d0a3b60e61450c0966bd75eb9b712cbb53a7ffdd9eef2c34f7ad6 Description: debug symbols for dropbear-bin Auto-Built-Package: debug-symbols Build-Ids: 5428127b9328bb3a8fef76fe9ce4ce679bb6995f a75b8dee4e50a4daa630190f0092417973433f5d a82529a5574f64fe557f4dd5e7c8919a579904fd ed8d1a85d847afa631c9bb0f4c85d7f8d18ac74e Package: dropbear-initramfs Priority: optional Section: net Installed-Size: 76 Maintainer: Cloud X OS Support Architecture: all Source: dropbear Version: 2022.83-1+deb12u1+cx1 Replaces: dropbear (<< 2015.68-1) Depends: busybox | busybox-static, dropbear-bin (>= 2022.83-1+deb12u1+cx1), initramfs-tools (>= 0.94), udev Recommends: cryptsetup-initramfs Breaks: dropbear (<< 2015.68-1) Filename: pool/main/d/dropbear/dropbear-initramfs_2022.83-1+deb12u1+cx1_all.deb Size: 41708 MD5sum: 1612bcc1516204b2a32079e8450ae392 SHA1: 94a1ee34741628aa632085b39d0c67fdb90a70d1 SHA256: 96989c2eb552555ab9107d8de255896481181b733f27e671d9cc3e31cb15739a SHA512: 7a4d09707a104758a1732cb7acb0df53eedd5b96239f7f8a75c19eb6243207794f1c32e0ede059cd054eac5e1a4fbb27d3f22f0739e5d6234ec200c9806c0300 Description: lightweight SSH2 server and client - initramfs integration dropbear is a SSH 2 server and client designed to be small enough to be used in small memory environments, while still being functional and secure enough for general use. . It implements most required features of the SSH 2 protocol, and other features such as authentication agent forwarding. . This package provides initramfs integration. Homepage: https://matt.ucc.asn.au/dropbear/dropbear.html Multi-Arch: foreign Package: dropbear-run Priority: optional Section: oldlibs Installed-Size: 44 Maintainer: Cloud X OS Support Architecture: all Source: dropbear Version: 2022.83-1+deb12u1+cx1 Depends: dropbear (>= 2019.78-1~) Pre-Depends: dpkg (>= 1.17.14) Recommends: dropbear-initramfs (>= 2019.78-1~) Breaks: dropbear (<< 2019.78-1~) Filename: pool/main/d/dropbear/dropbear-run_2022.83-1+deb12u1+cx1_all.deb Size: 34904 MD5sum: bdf1befbd65ab166b72d171bf2810d8d SHA1: 28e7ce604a113af4d21a74e75d7d504f5911dc45 SHA256: a1d5402b9c310b822475be170e259f814f36360c337ce8b8439b281ec5c9d2ee SHA512: 08c82f747a1f431e91fdc7c342f7b1a7c9531b2dc90c43281f32828caed10daf4fb163a4d69b9cae20e27967379b7284c659cffb19a49cfb50d61fdc9e04769a Description: transitional dummy package for dropbear This is a transitional dummy package to get upgrading systems to install the dropbear package. It can safely be removed once no other package depends on it. Homepage: https://matt.ucc.asn.au/dropbear/dropbear.html Multi-Arch: foreign Package: eapoltest Priority: optional Section: net Installed-Size: 3179 Maintainer: Cloud X OS Support Architecture: amd64 Source: wpa Version: 2.10-1028-g6b9c86466+cx1 Depends: libc6 (>= 2.34), libdbus-1-3 (>= 1.9.14), libpcsclite1 (>= 1.0.0), libssl3 (>= 3.0.0) Filename: pool/main/w/wpa/eapoltest_2.10-1028-g6b9c86466+cx1_amd64.deb Size: 1192884 MD5sum: 30c9c15bb6bcb386fe05a3db89332f5f SHA1: 9c5a969cc768f934ba27656df182d79d35bee58b SHA256: 07c432483803d27618b1df4cc08305401845344d79c573d2cc3cdc5a3ed0652a SHA512: 12ec92b10f9fcd1a22cfe8dec9df8a7eb7b7ce6f3d3098b96bbcd0e94e8a915ff6f2a5cc0b7656e27e1b59a97369bdaa9f83c8464d7c4ba5a35acb7825858e83 Description: EAPoL testing utility eapol_test allows testing EAP authentication methods without using a full 802.1X connection. It is frequently used to test the EAP configuration of RADIUS systems. It is an administrator tool and not required for standard 802.1X authentication. Homepage: https://w1.fi/wpa_supplicant/ Package: eapoltest-dbgsym Priority: optional Section: debug Installed-Size: 4139 Maintainer: Cloud X OS Support Architecture: amd64 Source: wpa Version: 2.10-1028-g6b9c86466+cx1 Depends: eapoltest (= 2.10-1028-g6b9c86466+cx1) Filename: pool/main/w/wpa/eapoltest-dbgsym_2.10-1028-g6b9c86466+cx1_amd64.deb Size: 3937968 MD5sum: 40e00185bdd259580405bd7ff76cffa7 SHA1: e7a30618a11cf6f02700c5548dc4b0eac344e0f2 SHA256: 59d828386a118423745a28973493b166de7732a30f96af39237b869fdbef6a57 SHA512: 41c545c7d38baafc60c7dff17677f19328d918e0ee61c00dbb9f730467e9a088ae5cd5932cb6c7e34064338dee4eb31adde8a8afec48c856454739e7988e4829 Description: debug symbols for eapoltest Auto-Built-Package: debug-symbols Build-Ids: 2b220cfa271b5c62243ae3b4da220283d36cd19b Package: ethtool Priority: optional Section: net Installed-Size: 739 Maintainer: Cloud X OS Support Original-Maintainer: Debian Kernel Team Architecture: amd64 Version: 1:6.6-1+cx1 Depends: libc6 (>= 2.34), libmnl0 (>= 1.0.3-4~) Filename: pool/main/e/ethtool/ethtool_6.6-1+cx1_amd64.deb Size: 211608 MD5sum: e03223c0a1b05c463caead2b64d3dc0a SHA1: de5d0741ad3393ba13b458d1ab952fbd57c70e70 SHA256: 1993297a113103743beb3d73b8e7934ff51ca5e4ba736f91d1966be89dca9fa8 SHA512: 25e88e99a5e3baf5c7ed76d6213e671d0fc0b18b2b122345bf7e1ddc5ff799c84f318cf862617f9a291e95ea0174119b2fa860b1e3ee5516a36743bd4f5647f2 Description: display or change Ethernet device settings ethtool can be used to query and change settings such as speed, auto- negotiation and checksum offload on many network devices, especially Ethernet devices. Homepage: https://www.kernel.org/pub/software/network/ethtool/ Original-Vcs-Browser: https://salsa.debian.org/kernel-team/ethtool Original-Vcs-Git: https://salsa.debian.org/kernel-team/ethtool.git Package: ethtool-dbgsym Priority: optional Section: debug Installed-Size: 522 Maintainer: Cloud X OS Support Original-Maintainer: Debian Kernel Team Architecture: amd64 Source: ethtool Version: 1:6.6-1+cx1 Depends: ethtool (= 1:6.6-1+cx1) Filename: pool/main/e/ethtool/ethtool-dbgsym_6.6-1+cx1_amd64.deb Size: 493196 MD5sum: cced57050fd0b551e94a2e8e04a3d148 SHA1: 4617c0bd8497840a2d65b447be2199d3b3117c9d SHA256: 585380b0a77809f0b3f7fc088b7c920c5314e336ee0509e2c634ed6fbb9cc9c0 SHA512: 93e574342b78c468e907d5b98479cea3ad6ae79eb8d60ad66c0cd6065ee0946cebd3e3a89ac06bfbe4839d6c361f993afcebec191c470e76bd1c39e280088aa2 Description: debug symbols for ethtool Auto-Built-Package: debug-symbols Build-Ids: 6f7b3b35c1a7c87556efad2f7cf97373415222a6 Original-Vcs-Browser: https://salsa.debian.org/kernel-team/ethtool Original-Vcs-Git: https://salsa.debian.org/kernel-team/ethtool.git Package: hostapd Priority: optional Section: net Installed-Size: 2388 Maintainer: Cloud X OS Support Architecture: amd64 Source: wpa Version: 2.10-1028-g6b9c86466+cx1 Depends: libc6 (>= 2.34), libnl-3-200 (>= 3.2.27), libnl-genl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.2.7), libssl3 (>= 3.0.0) Pre-Depends: init-system-helpers (>= 1.54~) Filename: pool/main/w/wpa/hostapd_2.10-1028-g6b9c86466+cx1_amd64.deb Size: 897936 MD5sum: 08c3d1825f77af59c723e1d924b504ec SHA1: 0ed8f06c98aef255c874fa8e5d063604b09c95ee SHA256: c8da64e881c31064abb82890d9add4ccd30cb374f3bee84dd33eaf8591cc2036 SHA512: 35bcf4f2531a535c123400c29d318bdd02d4a9fe9cfb386660e90df8650bb8e6e591b71e0fdda87c1d8215f34115bba47649055721e57c697c6a9c3577a5e681 Description: access point and authentication server for Wi-Fi and Ethernet IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/WPA3/EAP Authenticator . Originally, hostapd was an optional user space component for Host AP driver. It adds more features to the basic IEEE 802.11 management included in the kernel driver: using external RADIUS authentication server for MAC address based access control, IEEE 802.1X Authenticator and dynamic WEP keying, RADIUS accounting, WPA/WPA2/WPA3 (IEEE 802.11i/RSN) Authenticator and dynamic TKIP/CCMP keying. . The current version includes support for other drivers, an integrated EAP authenticator (i.e., allow full authentication without requiring an external RADIUS authentication server), and RADIUS authentication server for EAP authentication. . hostapd works with the following drivers: . * mac80211 based drivers with support for master mode [linux] * Host AP driver for Prism2/2.5/3 [linux] * Driver interface for FreeBSD net80211 layer [kfreebsd] * Any wired Ethernet driver for wired IEEE 802.1X authentication. Homepage: https://w1.fi/wpa_supplicant/ Multi-Arch: foreign Package: hostapd-dbgsym Priority: optional Section: debug Installed-Size: 2847 Maintainer: Cloud X OS Support Architecture: amd64 Source: wpa Version: 2.10-1028-g6b9c86466+cx1 Depends: hostapd (= 2.10-1028-g6b9c86466+cx1) Filename: pool/main/w/wpa/hostapd-dbgsym_2.10-1028-g6b9c86466+cx1_amd64.deb Size: 2701520 MD5sum: 0ba769d5e788fe10a4efcdd82120dbdc SHA1: 96926192e94d9bdeccadb44a31f987248ba94ec6 SHA256: c1689c42753e33a90c29afc5e175437d711e64cc3c9129fb4886605d5224d9d7 SHA512: e08d291e619a8edff83aa58b8cec5f5a00250eb31e61dff5031451154f797dae0cfc9816fb0d99846611bb1162d4be7f9525adc9f1880c810a28ac837b62373c Description: debug symbols for hostapd Auto-Built-Package: debug-symbols Build-Ids: 086ebb3f8dfd5864aed6f37db042fc079a830c54 e116fe161db481b8216d740bbc5e2ef8c5d1880f Package: hsflowd Essential: no Priority: optional Section: admin Maintainer: Cloud X OS Support Architecture: all Version: 2.0.55-1+cx1 Filename: pool/main/h/hsflowd/hsflowd_2.0.55-1+cx1_amd64.deb Size: 395816 MD5sum: 2be94d1726d7fc3c202bfff320430886 SHA1: e875090e7e464e3b703cae9d5aecd1ae8228930c SHA256: 704b6df3a29e81d059dd4027cccce3d0e197decb3dea29153ae3eca7ca50c3c6 SHA512: 536c1602fb16941065d540ecc029e2282b0e6306c530b4538e7caf594bd9c04a424b2a641cf35fe882d7a4fbad7e219726f3534c58dd7a1606e4f11d3646affe Description: sFlow(R) monitoring agent Homepage: sflow.net Package: hvinfo Priority: extra Section: contrib/utilities Installed-Size: 80 Maintainer: Cloud X OS Support Original-Maintainer: Daniil Baturin Architecture: amd64 Version: 1.2.0+cx1 Depends: libgnat-12 Filename: pool/main/h/hvinfo/hvinfo_1.2.0+cx1_amd64.deb Size: 21608 MD5sum: b5a205cde173788e0f82191d6fe11e5c SHA1: 592720281cd016620720f5fe20e55c12f7922f1e SHA256: ee120372d6055539ba986be1f38f4f8ee2736a9e1ac8e16d1d4a6e59bb09f064 SHA512: a3c65cbaed11a9c163dc4fc2ce275eded86f6ec2e4794b894752f9d329f888b495f5f338fd62db53c3e8d422443c5145b46e43f5c7ac2159ff80a1cd344d114c Description: x86 hypervisor detection tool An x86 hypervisor detection with support for detecting KVM, Xen PV or HVM, VMware, and others. Package: hvinfo-dbgsym Priority: optional Section: contrib/debug Installed-Size: 38 Maintainer: Cloud X OS Support Original-Maintainer: Daniil Baturin Architecture: amd64 Source: hvinfo Version: 1.2.0+cx1 Depends: hvinfo (= 1.2.0+cx1) Filename: pool/main/h/hvinfo/hvinfo-dbgsym_1.2.0+cx1_amd64.deb Size: 7008 MD5sum: 88e5de645f38deb5543e766d8c99b989 SHA1: 96e95087f086ac2291f7c7352d889e665b7cb61a SHA256: cf496c0b5f6e3644b143b1bb80d90ac861c851099d5a301e3dfe4561ae91fd2a SHA512: 3da9563373e8459c305fb48d6e33b8632d69a4801935286a81655fc25bd1616c45bbe7f52b06b33e072d0c423041ca196a629dc49d0112be34e4dda3195d4e64 Description: debug symbols for hvinfo Auto-Built-Package: debug-symbols Build-Ids: 82b89ed40172c2862f4a2e22b54fb60e3086850b Package: i2util-tools Priority: optional Section: net Installed-Size: 99 Maintainer: Cloud X OS Support Original-Maintainer: perfSONAR developers Architecture: amd64 Source: i2util Version: 4.4.6-2+cx1 Depends: libc6 (>= 2.34) Breaks: bwctl-server (<= 1.4.1~rc2-1) Filename: pool/main/i/i2util/i2util-tools_4.4.6-2+cx1_amd64.deb Size: 33944 MD5sum: a3e90c27100299f32f2b534f704ded2c SHA1: 274a2440058c7b99ca38da3bf3876023a128ede6 SHA256: 60c8d56b1c7c699c24f8a37a97b47b4c8a3e517c5c3b1fa07b934c53ad69c890 SHA512: 0def9b39b3d5317fd13f9828fd1bbdc19d2ccec6b76b3a160d7d68d9edad9ef1d8266d266d878f432493cf563338cc33e796d2c179fed35745cdaac778d4f7c9 Description: Internet2 utility tools I2utils is a small support library with a set of command line tools needed by several software projects from Internet2, most notably bwctl. . This package contains the command line tools. Homepage: https://github.com/perfsonar/i2util Package: i2util-tools-dbgsym Priority: optional Section: debug Installed-Size: 86 Maintainer: Cloud X OS Support Original-Maintainer: perfSONAR developers Architecture: amd64 Source: i2util Version: 4.4.6-2+cx1 Depends: i2util-tools (= 4.4.6-2+cx1) Filename: pool/main/i/i2util/i2util-tools-dbgsym_4.4.6-2+cx1_amd64.deb Size: 61980 MD5sum: 3827ecae58806772c175a9a0ab969e83 SHA1: 8cf7cbb73c8013fffc420c3c879cf3454019b054 SHA256: 64b312a5cea87a57bfcfc46f288c3366cb6710b32fe87fbcab8b6f850d246dac SHA512: bd6b4acd34e035e103cc7f8155029591870ef53f99a76dc5600a98fa5c5f62ca89be53fc0a69ff008b4948a87ba149f88323f00daf8421d98767ea5b48ad7635 Description: debug symbols for i2util-tools Auto-Built-Package: debug-symbols Build-Ids: 92ac3b2707f58c39716fd669987fcc28c4d6933f fa6bae83a0d9aa64a958908d0975879534fe6dc4 Package: ipaddrcheck Priority: extra Section: contrib/net Installed-Size: 41 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 1.2+cx1 Depends: libpcre3, libcidr0, libc6 (>= 2.34) Filename: pool/main/i/ipaddrcheck/ipaddrcheck_1.2+cx1_amd64.deb Size: 10380 MD5sum: 575a755546ad24cda685bf3825227ec6 SHA1: 5c7095db5188b4b0bff6b80881bc574ea4f951d0 SHA256: c953d8f14f3f875336d8bccb89ad6947b48fff8eecc74659e6fd6651d7719df8 SHA512: 295f90199200f91de20ed6fa133ce36855f8fa1d7e9b1548ff87d6f848182435c4aca7e9233c6a8f248e6ba72af366d39bae84cbcaf290a29edf3c6e81d26dc7 Description: IPv4 and IPv6 address validation utility A validation utility for IPv4 and IPv6 addresses. Package: ipaddrcheck-dbgsym Priority: optional Section: contrib/debug Installed-Size: 33 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: ipaddrcheck Version: 1.2+cx1 Depends: ipaddrcheck (= 1.2+cx1) Filename: pool/main/i/ipaddrcheck/ipaddrcheck-dbgsym_1.2+cx1_amd64.deb Size: 18168 MD5sum: 3bacbdeeeae25e9b1f2aa38f730e4504 SHA1: 722df07b7125d5f78c03a4212c12334b5af022fc SHA256: 0752f9e95fab44b5228776026e8c09c2062c28e8da67a9efc0b89e9158e9ee9b SHA512: d2c502d0d58cfe56a7a9b5ec9874e1bec473dffc9dccfdbad1794b9dc81de74773433958c0e369246df37614cfff925925fe97ff7648bbc0e1be079261005879 Description: debug symbols for ipaddrcheck Auto-Built-Package: debug-symbols Build-Ids: 488969f182f3c5038facd322c6dc46de3da6e1f7 Package: iproute2 Priority: important Section: net Installed-Size: 3580 Maintainer: Cloud X OS Support Original-Maintainer: Debian Kernel Team Architecture: amd64 Version: 6.7.0-2~bpo12+1+cx1 Provides: arpd Depends: debconf (>= 0.5) | debconf-2.0, libbpf1 (>= 1:0.6.0), libbsd0 (>= 0.0), libc6 (>= 2.34), libcap2 (>= 1:2.10), libdb5.3, libelf1 (>= 0.131), libmnl0 (>= 1.0.3-4~), libselinux1 (>= 3.1~), libtirpc3 (>= 1.0.2), libxtables12 (>= 1.6.0+snapshot20161117), libcap2-bin Suggests: iproute2-doc, python3:any Conflicts: arpd Filename: pool/main/i/iproute2/iproute2_6.7.0-2~bpo12+1+cx1_amd64.deb Size: 1051128 MD5sum: 8a96540b4677038fa232f4712abd7ade SHA1: 57176b6cb881794d5617dc0e26fab934cfbde218 SHA256: 9fa3685025d94a3dce59baa245e1b04b7145871b25635b1df008df7720ada79a SHA512: dc39d026ab757be2525b35e06ee243c276cf332c7618c3a3d9b454d6b2c4f468d89a1c459d9a237bddd90b5ce20d09d06e762df72c6db04ef76cc1a9ce69ce68 Description: networking and traffic control tools The iproute2 suite is a collection of utilities for networking and traffic control. . These tools communicate with the Linux kernel via the (rt)netlink interface, providing advanced features not available through the legacy net-tools commands 'ifconfig' and 'route'. Homepage: https://wiki.linuxfoundation.org/networking/iproute2 Multi-Arch: foreign Original-Vcs-Browser: https://salsa.debian.org/kernel-team/iproute2 Original-Vcs-Git: https://salsa.debian.org/kernel-team/iproute2.git Package: iproute2-dbgsym Priority: optional Section: debug Installed-Size: 3744 Maintainer: Cloud X OS Support Original-Maintainer: Debian Kernel Team Architecture: amd64 Source: iproute2 Version: 6.7.0-2~bpo12+1+cx1 Depends: iproute2 (= 6.7.0-2~bpo12+1+cx1) Filename: pool/main/i/iproute2/iproute2-dbgsym_6.7.0-2~bpo12+1+cx1_amd64.deb Size: 3404264 MD5sum: 2c30d7fec0acbee9da808986732adce6 SHA1: 7ac06e5bb9a60d7fbb7da631bcad016c42831fa2 SHA256: a35b351188873b8bbf4c0c494604299c9f3975006f25f9fc6f076d16d28369b4 SHA512: a72ec9ca9e99134a029aed17351d47efbf0126b7213f068a3ee58b269f0f21e42e493ebb4049eff646ef5ca6db1f5e8568aa0c87077333b460a51f8de9dfa469 Description: debug symbols for iproute2 Auto-Built-Package: debug-symbols Build-Ids: 21035d4f74cda0dd9bbe3185ba9f9f2f1774116f 24499a263a2e411d5064775cfbdf69713f4c72ee 3ea391771608ff770d24868e717f1e7e472ce330 483f9a68b768fce63eb3697c4d11313873a3f18d 525afc3752394c0f47ca72c77c264493862ba27f 54d23c08116c4926f5840dbe10d5c7aa2b60a600 5a099b5f401bb20ddc5f3c450b32ce467eeba966 5db428ba327dd33a2e9ea89d0de0a751f63cbdfe 7149711d9bae98272d13946097c14ccee63a7287 830d0a0f6b8b5a6d3307ee462ed27090ba013b82 914ed96a2a96aa5e443958baded4fcfa8c21b595 c788751441c459eb5297e488ec32882a066343b2 d5f9f701bfc8f5f4a631c49af339c434e18057f5 dd27955719b357e0873039128b4a19de6c85908f e2e6617e53a9dd53875e5e20970405c0e742f606 f730ed8b9366e96a8aefa1deb1f5b374f9aa4230 Original-Vcs-Browser: https://salsa.debian.org/kernel-team/iproute2 Original-Vcs-Git: https://salsa.debian.org/kernel-team/iproute2.git Package: iproute2-doc Priority: optional Section: doc Installed-Size: 53 Maintainer: Cloud X OS Support Original-Maintainer: Debian Kernel Team Architecture: all Source: iproute2 Version: 6.7.0-2~bpo12+1+cx1 Filename: pool/main/i/iproute2/iproute2-doc_6.7.0-2~bpo12+1+cx1_all.deb Size: 18808 MD5sum: bc6e6bf08f712d1dace39d2268d38214 SHA1: 73547f9b8ff42d4c6499024351ea4824e51cc982 SHA256: 4234a2f59cddd63874b31cac22e8a057a6f4b37eb2bb345c3de5f482452c290d SHA512: 82d40a576f03bc461dfd0bb77c3d786748b0712bc5d612eccc822ed4e812fb361d18cd198006174f63dd511066fb0fdcd0839ff0262c31eb866c3dc8986ec707 Description: networking and traffic control tools - documentation The iproute2 suite is a collection of utilities for networking and traffic control. . This package contains the documentation for iproute. Homepage: https://wiki.linuxfoundation.org/networking/iproute2 Multi-Arch: foreign Original-Vcs-Browser: https://salsa.debian.org/kernel-team/iproute2 Original-Vcs-Git: https://salsa.debian.org/kernel-team/iproute2.git Package: isc-dhcp-client Priority: important Section: net Installed-Size: 2858 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Provides: dhcp-client Depends: libc6 (>= 2.36), debianutils (>= 2.8.2), iproute2 Recommends: isc-dhcp-common Suggests: resolvconf, avahi-autoipd, isc-dhcp-client-ddns Filename: pool/main/i/isc-dhcp/isc-dhcp-client_4.4.3-P1-4+cx1_amd64.deb Size: 1096756 MD5sum: a1b78de44555dd767a475a6f1c985e89 SHA1: 37c7a1d0e9533360804c2f20b4e8bdef77450bc5 SHA256: d8213871507cd7f2cf7164b10730424fab6af7bbdc374680514a6d61cbfbb0a2 SHA512: f545c681c23902203572c676fed6a70d76851fbe2cf5cfe780d0bc0a1c0b5e7b63e4894281b6a7a39d5a69d97f9250f137c0f2dbb7610534ddf518b8a1161977 Description: DHCP client for automatically obtaining an IP address This is the Internet Software Consortium's DHCP client. . Dynamic Host Configuration Protocol (DHCP) is a protocol like BOOTP (actually dhcpd includes much of the functionality of bootpd). It gives client machines "leases" for IP addresses and can automatically set their network configuration. If your machine depends on DHCP (especially likely if it's a workstation on a large network, or a laptop, or attached to a cable modem), keep this or another DHCP client installed. . Extra documentation can be found in the package isc-dhcp-common. . ISC has decided to stop maintaining the client and relay parts of isc-dhcp, and they will be removed after the 4.4.3 release, keeping only the server component. Please, consider using an alternative for isc-dhcp-client (dhclient). . More information can be found in the ISC official announcement: https://www.isc.org/blogs/dhcp-client-relay-eom/ Homepage: http://www.isc.org Package: isc-dhcp-client-dbgsym Priority: optional Section: debug Installed-Size: 3228 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: isc-dhcp-client (= 4.4.3-P1-4+cx1) Filename: pool/main/i/isc-dhcp/isc-dhcp-client-dbgsym_4.4.3-P1-4+cx1_amd64.deb Size: 3124324 MD5sum: 661e8fac660db4e00fef9f182e0a1d37 SHA1: 8b205494aaf4320ff91879ca9c8b6f618cc1f00f SHA256: 135d57dce39d9a530349590b8b5640feb74a01e1b43945c8ed2fc509328d0cdb SHA512: c5b85642764859ecf27316efe999a57802e431a51cb59a75ff5066903748f254f890be7ac5de6cb1094b0e52afe3f174ce3348052908f746cc7f81d91280613d Description: debug symbols for isc-dhcp-client Auto-Built-Package: debug-symbols Build-Ids: bdb731ddd75cc5f3322eaeaded2d3907fe0ce156 Package: isc-dhcp-client-ddns Priority: optional Section: net Installed-Size: 2937 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: libc6 (>= 2.36), isc-dhcp-client (= 4.4.3-P1-4+cx1) Filename: pool/main/i/isc-dhcp/isc-dhcp-client-ddns_4.4.3-P1-4+cx1_amd64.deb Size: 1117176 MD5sum: 24dcf64d248351943be20ffdbad27632 SHA1: 71c8dea8b71db533bfdf94ee1066adfee03ed83e SHA256: c62b33a43e0c4696f2ca375577e794d44a038ba7bf6948c0b041016c9f852f0c SHA512: 078670430a9222365342d65a155cb783ee209fa35b4b2162e3b75e55064e55b58107a7456782b5678df7110e51d0658212463f9a4a1f41ab1a1a78e9563db234 Description: Dynamic DNS (DDNS) enabled DHCP client This a Dynamic DNS enabled version of the DHCP client. . Dynamic Host Configuration Protocol (DHCP) is a protocol like BOOTP (actually dhcpd includes much of the functionality of bootpd). It gives client machines "leases" for IP addresses and can automatically set their network configuration. If your machine depends on DHCP (especially likely if it's a workstation on a large network, or a laptop, or attached to a cable modem), keep this or another DHCP client installed. . Extra documentation can be found in the package isc-dhcp-common. Enhances: isc-dhcp-client Homepage: http://www.isc.org Package: isc-dhcp-client-ddns-dbgsym Priority: optional Section: debug Installed-Size: 3434 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: isc-dhcp-client-ddns (= 4.4.3-P1-4+cx1) Filename: pool/main/i/isc-dhcp/isc-dhcp-client-ddns-dbgsym_4.4.3-P1-4+cx1_amd64.deb Size: 3322772 MD5sum: 23ed5bcec33bcf9f21817a5fd0f36bc3 SHA1: 56e52ada6c82e447c61a622dd023a69d76b127e4 SHA256: d1e7c5a55ff29bcf204fcd63c948b9846141d256cedc06bb2977806d793c737a SHA512: bb18be25f0205d3d79fa2a538e9b8c888c548395a8ea5bc5f96ff437952d491560defb42c82ada21748b12461b9f78874cf70a74519b33822315660be38df313 Description: debug symbols for isc-dhcp-client-ddns Auto-Built-Package: debug-symbols Build-Ids: b64b5e5fc62f1a53ece02df6f3c15edc108cfda4 Package: isc-dhcp-common Priority: important Section: net Installed-Size: 123 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: debianutils (>= 2.8.2) Filename: pool/main/i/isc-dhcp/isc-dhcp-common_4.4.3-P1-4+cx1_amd64.deb Size: 117804 MD5sum: d2641a139081d2f7045e9ce2a9d7a69e SHA1: 148b100fc11deef933a1cfb35c9de84e7ebc1367 SHA256: fb3c9893102f291f255de854c7e0feefe31e228bea9af0378fe0e0e8920a4899 SHA512: 685eceaea54d81829f3b39710f0cf5c2d76722b9e0cc14117c3160e6bacf9389a28e204e57dcd31a7bd45276092d3c1c6f89f3397a55fa2af633abe52aef0c5a Description: common manpages relevant to all of the isc-dhcp packages This package includes manpages that are relevant to the various ISC DHCP packages. . The dhcp-options manpage describes available options for dhcpd and dhclient. The dhcp-eval manpage describes evaluation of conditional expressions. Homepage: http://www.isc.org Package: isc-dhcp-dev Priority: optional Section: devel Installed-Size: 1056 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: libc6-dev Filename: pool/main/i/isc-dhcp/isc-dhcp-dev_4.4.3-P1-4+cx1_amd64.deb Size: 296148 MD5sum: ccef7d82979201941967129d06a45a20 SHA1: db616ca815dab1876251c88d10d74747d36e896f SHA256: 45987966cb4dc548473321c2195b63aaadd11ed95eb73856d5e72cd4c3f4ba8c SHA512: 10c4fecb79f3f8b3f1c6c848cd22913860e8102f5bffebee531f50719d235d36cd072da2b54615fd47fe05efbb7a3e6223116a85d802cfa88610e0473a308a48 Description: API for accessing and modifying the DHCP server and client state This package provides support for OMAPI (Object Management Application Programming Interface), which is an API for accessing and modifying the DHCP server and client state. Homepage: http://www.isc.org Package: isc-dhcp-keama Priority: optional Section: net Installed-Size: 269 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: libc6 (>= 2.34) Filename: pool/main/i/isc-dhcp/isc-dhcp-keama_4.4.3-P1-4+cx1_amd64.deb Size: 90720 MD5sum: 173d986a1d54ead1503d0f104b03d931 SHA1: 76fff7db3d9a4002706f32315ff02c55a177cfaf SHA256: 0a2a1375b62c9e447601a371b9209e3073ec003a8b3cc5e6fa6170347b812406 SHA512: 9a96f7a0660b196eb1d26b6a3513265b7c57325df7cfadf75b6c6b306059ecd72d60d69f217bdd3a20caba4e4bf49271354eab0029e30024b3809f2f22b21570 Description: KEA Migration Assistant This is an ISC DHCP server to ISC KEA Migration Assistant. . The KEA Migration Assistant (aka keama) is an experimental tool which helps to translate ISC DHCP configurations to Kea. Homepage: http://www.isc.org Package: isc-dhcp-keama-dbgsym Priority: optional Section: debug Installed-Size: 231 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: isc-dhcp-keama (= 4.4.3-P1-4+cx1) Filename: pool/main/i/isc-dhcp/isc-dhcp-keama-dbgsym_4.4.3-P1-4+cx1_amd64.deb Size: 213048 MD5sum: 31f9269270e7c4839d5c524dfe86f023 SHA1: 4a58945005b069f4ab51b619ad0410d496de0d5a SHA256: 09ed251f4937e55a9987e33cbbb517c4cfb8efd9676a160fbc80dfdc5cf23195 SHA512: 7fcbef8cfd3bf06d42b5c564354fbd3f3b83651f55ddaa7a7280afaa623d51bb2cbf0fc553274639be52e81a8c665c3a944f1495a837ed3b0ec3578e6b891ff5 Description: debug symbols for isc-dhcp-keama Auto-Built-Package: debug-symbols Build-Ids: 7be4f8c4ecf8485e75219b5301f27ffc197fb11c Package: isc-dhcp-relay Priority: optional Section: net Installed-Size: 2875 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.36), debianutils (>= 2.8.2) Recommends: isc-dhcp-common Conflicts: dhcp-relay Filename: pool/main/i/isc-dhcp/isc-dhcp-relay_4.4.3-P1-4+cx1_amd64.deb Size: 1089688 MD5sum: 70744f007d38c3ef3e5cc0c468a19343 SHA1: 56a5161df9f2b812874d33ca6e5d4d5f134ff6c3 SHA256: 35888736f4db8674d685570f044f900dc2c00c6cec7e9ecb76aabc0090709028 SHA512: 93e3856e4f761ab597d84ed415413569f9bd8533572f78c94db65a2df7082ff070d0b68aa97e71239006178bfe38324f372ccac92c5aaee7f04d72e856f15c70 Description: ISC DHCP relay daemon This is the Internet Software Consortium's DHCP relay. . Installing this package will make the machine a DHCP relay, which requires a reachable DHCP or BOOTP server in order to function. . Extra documentation can be found in the package isc-dhcp-common. . ISC has decided to stop maintaining the client and relay parts of isc-dhcp, and they will be removed after the 4.4.3 release, keeping only the server component. Please, consider using an alternative for isc-dhcp-relay (dhcrelay). . More information can be found in the ISC official announcement: https://www.isc.org/blogs/dhcp-client-relay-eom/ Homepage: http://www.isc.org Package: isc-dhcp-relay-dbgsym Priority: optional Section: debug Installed-Size: 3334 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: isc-dhcp-relay (= 4.4.3-P1-4+cx1) Filename: pool/main/i/isc-dhcp/isc-dhcp-relay-dbgsym_4.4.3-P1-4+cx1_amd64.deb Size: 3227984 MD5sum: 3a27c4ade805cba0edaf2dd09e608c9d SHA1: f743474a55938aa5b00cc5ac5548e9a325a2cf0f SHA256: 3dbd241c7d709f219a826e5fa93e61700ede9677fc53ce5efa70b1fa91d54a86 SHA512: 263c72c1684663b44aeb550df5a1c4a592cee5bf0e8625869b460200468c13d1d05b54e9310e9eb0a5f5658584163f16a9ac5c06d35cab17a45888417e4e1252 Description: debug symbols for isc-dhcp-relay Auto-Built-Package: debug-symbols Build-Ids: 4fc6563c14aa3c7d4d10d609048ef96dbacd4219 Package: isc-dhcp-server Priority: optional Section: net Installed-Size: 6063 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Replaces: isc-dhcp-common (<= 4.3.3-1) Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.36), debianutils (>= 2.8.2) Recommends: isc-dhcp-common, policycoreutils Suggests: polkitd, isc-dhcp-server-ldap, ieee-data Breaks: isc-dhcp-common (<= 4.3.3-1), logcheck-database (<= 1.3.17~) Filename: pool/main/i/isc-dhcp/isc-dhcp-server_4.4.3-P1-4+cx1_amd64.deb Size: 1479896 MD5sum: e13d082a94d76dd811e9c7967acc3616 SHA1: 4a119f8f698940431278ae49a33f2a79d5e800e8 SHA256: de7985a0feeacc1bd3f094de4be807bd6e6cd2078dbc18ca0b61f92729a9c4c0 SHA512: 9dc8e5f521a712a3ceeb87901f1348ce37ed915686457f90fff3268b7e9a21ace02ecab05405d8d9ed8c2ac7fa4d0f51854a7ed263e3ab34159b2b83ebca4197 Description: ISC DHCP server for automatic IP address assignment This is the Internet Software Consortium's DHCP server. . Dynamic Host Configuration Protocol (DHCP) is a protocol like BOOTP (actually dhcpd includes much of the functionality of bootpd). It gives client machines "leases" for IP addresses and can automatically set their network configuration. . This server can handle multiple ethernet interfaces. Homepage: http://www.isc.org Package: isc-dhcp-server-dbgsym Priority: optional Section: debug Installed-Size: 7318 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: isc-dhcp-server (= 4.4.3-P1-4+cx1) Filename: pool/main/i/isc-dhcp/isc-dhcp-server-dbgsym_4.4.3-P1-4+cx1_amd64.deb Size: 7069720 MD5sum: acc75757188fbbb445fd5115cd89c5db SHA1: 092115855de14c0de4e389be8cf5b1d6edfafb9c SHA256: 82cb234af0ec7befe555fa5267b7e0b35712191d76908383607f2f4b061cfa3e SHA512: ce64e999487de566e4756d73c9838f542fbdd9990d8b3e0c668e77466e0cecd5311fbc3a75ed040577808a55c38fd2a810b667328fd5abf5bcbaae78b11ebf3d Description: debug symbols for isc-dhcp-server Auto-Built-Package: debug-symbols Build-Ids: 094b873038a710364a8cfc8a66bd3b1bc7b08421 0f6995d33dcf8a9451e6e142476ff3ce5e05228a Package: isc-dhcp-server-ldap Priority: optional Section: net Installed-Size: 3242 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: libc6 (>= 2.36), libldap-2.5-0 (>= 2.5.4), debianutils (>= 2.8.2), isc-dhcp-server (= 4.4.3-P1-4+cx1) Conflicts: dhcp Filename: pool/main/i/isc-dhcp/isc-dhcp-server-ldap_4.4.3-P1-4+cx1_amd64.deb Size: 1242048 MD5sum: 82abfdad2456684eb34fa3cf6a3e4431 SHA1: cdaacc52f49490c9c13c37a93df929830f45b6bc SHA256: e46b62b925686c8f0ab8713c7ab6aea4f235a58664064ea6c47e05732e0d7203 SHA512: dc0974ecd4f90331f8815fdc59ce86d2a2f2d4b4ef08541da541da427c38d162eb9eb5ee7c68b064238dfae7bb5289c8daf40361bb12df3d91c14c8eb8ef97dd Description: DHCP server that uses LDAP as its backend This is the server from the Internet Software Consortium's implementation of DHCP. . Dynamic Host Configuration Protocol (DHCP) is a protocol like BOOTP (actually dhcpd includes much of the functionality of bootpd). It gives client machines "leases" for IP addresses and can automatically set their network configuration. . This is the DHCP server with LDAP patches applied to it. Enhances: isc-dhcp-server Homepage: http://www.isc.org Package: isc-dhcp-server-ldap-dbgsym Priority: optional Section: debug Installed-Size: 3735 Maintainer: Cloud X OS Support Architecture: amd64 Source: isc-dhcp Version: 4.4.3-P1-4+cx1 Depends: isc-dhcp-server-ldap (= 4.4.3-P1-4+cx1) Filename: pool/main/i/isc-dhcp/isc-dhcp-server-ldap-dbgsym_4.4.3-P1-4+cx1_amd64.deb Size: 3616528 MD5sum: 7a56c4f5acc3bc458d337c1763fa58e8 SHA1: bef9f5395a335e9c80d715e79861217d41d7a782 SHA256: d899f0076c3977d000c9cd4c5f51f75a06c090d75dda7012966685b035ad50fd SHA512: 2a9687307de549bac6c509427610855ce564458843d340e9d2afc1e189f0f014080145cde77b9aa8e1c67d210f9624185be373e754e455e44acf0fc3a90028e9 Description: debug symbols for isc-dhcp-server-ldap Auto-Built-Package: debug-symbols Build-Ids: 4966259e9d3b900ac5671a6530377a6c47b5e0b7 Package: jool Priority: optional Section: unknown Installed-Size: 1157 Maintainer: Cloud X OS Support Architecture: amd64 Version: 4.1.9+bf4c7e3669-1+cx1 Depends: linux-image-6.6.27-amd64-vyos-cx, libc6 (>= 2.34), libnl-3-200 (>= 3.2.24), libnl-genl-3-200 (>= 3.2.21) Filename: pool/main/j/jool/jool_4.1.9+bf4c7e3669-1+cx1_amd64.deb Size: 179624 MD5sum: fec79d188d3dac1d0fb7baea26a7efcd SHA1: 6ee594351d7fd2413ddffdd76a523c683060f7a4 SHA256: 728f17819a57f6bb70eaa79e1e47145c7d4e8bfcea30bf0d107a904c81973c52 SHA512: 778e92020eb06ee6fbd73c545cf775080dfae39e500788b69809f65035787586ec26cad78c508e493f2ab53fe38aa1377e014b6f7054c742713622a9a9add23c Description: auto-generated package by debmake This Debian binary package was auto-generated by the debmake(1) command provided by the debmake package. Homepage: Multi-Arch: foreign Package: jool-dbgsym Priority: optional Section: debug Installed-Size: 385 Maintainer: Cloud X OS Support Architecture: amd64 Source: jool Version: 4.1.9+bf4c7e3669-1+cx1 Depends: jool (= 4.1.9+bf4c7e3669-1+cx1) Filename: pool/main/j/jool/jool-dbgsym_4.1.9+bf4c7e3669-1+cx1_amd64.deb Size: 275324 MD5sum: 45854c063aadef4c8057f234ded064e3 SHA1: 1ea6f318e5af4589b5ce2649adba0650067cd930 SHA256: f2630aad750ffc5b8872627ad91851a27c013058204a9b00308b5d982146b562 SHA512: 1a6e92a2d88ada66334715c75b498ab872cb71e585048779c4067ffae7433e41db96daff23de8a09e4f72700b68fe8b5677fc122e65c97f5aad24edf2cfc53c7 Description: debug symbols for jool Auto-Built-Package: debug-symbols Build-Ids: 1d93a0aca29922980574f58016fda0648d36f004 261c183558c45627e1ec0a348094084d60d7821b b7eac1105a1eb18c720a630ea5d9de373e6edf09 c45d8952c9b4fdaa83e3bfbd8471ee098f4763d7 d997849c496c1e57cfa702c7ed76171a4e644805 Package: keepalived Priority: optional Section: admin Installed-Size: 1377 Maintainer: Cloud X OS Support Architecture: amd64 Version: 1:2.2.8-1+cx1 Depends: iproute2, libc6 (>= 2.34), libglib2.0-0 (>= 2.26.0), libmnl0 (>= 1.0.3-4~), libnftnl11 (>= 1.1.2), libnl-3-200 (>= 3.2.27), libnl-genl-3-200 (>= 3.2.7), libpcre2-8-0 (>= 10.22), libsnmp40 (>= 5.9.3+dfsg), libssl3 (>= 3.0.0), libsystemd0 (>= 214) Pre-Depends: init-system-helpers (>= 1.54~) Recommends: ipvsadm Filename: pool/main/k/keepalived/keepalived_2.2.8-1+cx1_amd64.deb Size: 574876 MD5sum: 9ab0d17c4ddee55d0e8b72ea5e5c4576 SHA1: 49c88ff65d422e8bef9131a40397a7e37721a4e2 SHA256: 45670b0e8538051b4c23184752f68ea3e26972e77f7c484ad9aa1f8e3aded3e8 SHA512: b1726711fe2f3ab88544a3bd28271da855955c5d9502521e78ac323cd0a261f4f617c5eb05eb2c1d41da65371e74edab1ea6e4f44e226ffd3de824787ff155bc Description: Failover and monitoring daemon for LVS clusters keepalived is used for monitoring real servers within a Linux Virtual Server (LVS) cluster. keepalived can be configured to remove real servers from the cluster pool if it stops responding, as well as send a notification email to make the admin aware of the service failure. . In addition, keepalived implements an independent Virtual Router Redundancy Protocol (VRRPv2; see RFC 2338 for additional info) framework for director failover. Homepage: https://keepalived.org Package: keepalived-dbgsym Priority: optional Section: debug Installed-Size: 1100 Maintainer: Cloud X OS Support Architecture: amd64 Source: keepalived Version: 1:2.2.8-1+cx1 Depends: keepalived (= 1:2.2.8-1+cx1) Filename: pool/main/k/keepalived/keepalived-dbgsym_2.2.8-1+cx1_amd64.deb Size: 1017184 MD5sum: 0b35268b6b75f5711e4342381dd3380a SHA1: e8c64d32cc8a4de5547b492582786396a87b674c SHA256: 252e44d30f245cad1d82e3047b10f7b78c12eade2ef52d9351e0ddad13d648af SHA512: fd439ff8a611f397c25ff3e4c3edd5859f393df1d38e8ab926afe707d9a9da9440a33415c06c35039ace70264dc72c2ffde49d2adf5a62aa8d20ed9a518ae6b9 Description: debug symbols for keepalived Auto-Built-Package: debug-symbols Build-Ids: 90ffb874025655cf3dc7bd5353953272cf6651da Package: libcharon-extauth-plugins Priority: optional Section: net Installed-Size: 206 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Replaces: libcharon-extra-plugins (<< 5.8.0-2~) Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.25) Breaks: libcharon-extra-plugins (<< 5.8.0-2~) Filename: pool/main/s/strongswan/libcharon-extauth-plugins_5.9.11-2+vyos0+cx1_amd64.deb Size: 90196 MD5sum: ebdc649b26ff70debe13edf5fb872e3d SHA1: 75e5ed90015f7bb550bccbd7f5422504e4833511 SHA256: d0a2f251bf1319db38cc3fe7d7c39b078c9183b3d101102ef12d312f5eb7b786 SHA512: 68e812590b59b6c4691f7b3083a70f5659c8bbf7e010dd173a22fc58b41971125d39583b2478c5ff36b2f0dc2f4b260a4e81102c435d391e7d52a64371514da3 Description: strongSwan charon library (extended authentication plugins) The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package provides extended authentication plugins for the charon library: - eap-mschapv2 (EAP-MSCHAPv2 protocol handler using passwords/NT hashes) Used for client side to connect to some VPN concentrators configured for Windows 7+ and modern OSX/iOS using IKEv2 (identify with public key, authenticate with MSCHAPv2). - xauth-generic (Generic XAuth backend that provides passwords from ipsec.secrets and other credential sets) Used for the client side to connect to VPN concentrators configured for Android and older OSX/iOS using IKEv1 and XAUTH (identify with public key, authenticate with XAUTH password). . These are the "not always, but still more commonly used" plugins, for further needs even more plugins can be found in the package libcharon-extra-plugins. Homepage: http://www.strongswan.org Package: libcharon-extauth-plugins-dbgsym Priority: optional Section: debug Installed-Size: 138 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libcharon-extauth-plugins (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/libcharon-extauth-plugins-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 116984 MD5sum: dcc619be2dec0a2d5637b9240f62c21e SHA1: a2742d88267e3941937c116479042a2ce067f6d4 SHA256: 66aa6d120aea80e433c5c916a93e59fb9ad605ea118492cfdc4baa159b408814 SHA512: 4e8f6496c093834317ca94aa77a0e0750bcd001607acad0694bff20e0e6df3147e042b61e1a576eadfb62b4215f8cbbaf4c14bea0431b1c58243909fb91e7bb4 Description: debug symbols for libcharon-extauth-plugins Auto-Built-Package: debug-symbols Build-Ids: 6427c126b936dcd11c1c33d1ca20b97931bd35cc df16202a0016db331933f8cf0ce15bc287df9ff1 Package: libcharon-extra-plugins Priority: optional Section: net Installed-Size: 1060 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.34), libip4tc2 (>= 1.8.3), libpam0g (>= 0.99.7.1) Filename: pool/main/s/strongswan/libcharon-extra-plugins_5.9.11-2+vyos0+cx1_amd64.deb Size: 275756 MD5sum: da66a522b22b5c0bb369ec51b9af5824 SHA1: 5db7ad83bf1a739bec72ba8c78f76b1e63912919 SHA256: 7d1155e5dc191baefe2df2e4f6e767b63d065e6d370bca17464a815e25834970 SHA512: e4605e1223a2de506c2b35751b6f814ff97f410cfd6d4c84b834dc4327fd378fc7e5e6ffca07380a7b2a895cad88f45dc3ef3f8b9e1095a854d044b107a8a6cf Description: strongSwan charon library (extra plugins) The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package provides extra plugins for the charon library: - addrblock (Narrow traffic selectors to RFC 3779 address blocks in X.509 certificates) - certexpire (Export expiration dates of used certificates) - eap-aka (Generic EAP-AKA protocol handler using different backends) - eap-gtc (EAP-GTC protocol handler authenticating with XAuth backends) - eap-identity (EAP-Identity identity exchange algorithm, to use with other EAP protocols) - eap-md5 (EAP-MD5 protocol handler using passwords) - eap-radius (EAP server proxy plugin forwarding EAP conversations to a RADIUS server) - eap-tls (EAP-TLS protocol handler, to authenticate with certificates in EAP) - eap-tnc (EAP-TNC protocol handler, Trusted Network Connect in a TLS tunnel) - eap-ttls (EAP-TTLS protocol handler, wraps other EAP methods securely) - error-notify (Notification about errors via UNIX socket) - ha (High-Availability clustering) - kernel-libipsec (Userspace IPsec Backend with TUN devices) - led (Let Linux LED subsystem LEDs blink on IKE activity) - lookip (Virtual IP lookup facility using a UNIX socket) - tnc (Trusted Network Connect) - unity (Cisco Unity extensions for IKEv1) - xauth-eap (XAuth backend that uses EAP methods to verify passwords) - xauth-pam (XAuth backend that uses PAM modules to verify passwords) Homepage: http://www.strongswan.org Package: libcharon-extra-plugins-dbgsym Priority: optional Section: debug Installed-Size: 1687 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libcharon-extra-plugins (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/libcharon-extra-plugins-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 1482056 MD5sum: c28ab58a057f8aa0ba3b9acb8afb35f3 SHA1: f225c3dcfc893643b7f07747d43abed685549b79 SHA256: dc621f6fdb68ab8ad8cfaeb80b3c8b719856b606b77ccc04deec977ae221c9f4 SHA512: ef26684a6ce7eb5dac242d11abb4eb1c95523e9a56e14d10b049a5c55d57334a6405f72d000cde3aa4e48896d0b43633283906b43d6d97175cc9909da546a084 Description: debug symbols for libcharon-extra-plugins Auto-Built-Package: debug-symbols Build-Ids: 07cbfb2c991bd38d067d409daf6a6c4b8c91949c 0c858167711c8cb16fa67f4879b23e8f4ce1606d 12c6469e5cd79be01914e62d906c94e0538b2d8f 2e7f131bd90dbd2b13bbbd11e90aec5eabf0f23e 33448ed58c9c89ea3368db68ee19aa1d2ed5fa62 374e662fe79f6303bc714e5a0cc5fe6510f9ee33 3966eae4e5b4c89cf36db309884d2a79b36dd5c8 3e5e2ee5e9aec197fe6a79dd107a39c3ffe67013 47f6718769364b62721322ac7e7ab7450fdf71b8 4d993ed0806ba6e117fdf9b0dc3e0082d042257a 5ca4be9a914c23daaf0bb2ad8411695180357f82 62d12329e91fcebb8dbdf792f1b13c9c2a1f7d7c 6ec47fa5d5be644eff9de9bbceb598100da2da72 720ea4de9dcf25a320f9c87557f56e97ec546aa0 7290a77e73a7582aa13fbaa3d8f5f00892a061e7 7604d25e21627b38436c9a3350f365e96df622df 7cc3280a3df562d7475ed7f63512bf0ddc756492 7ea37b5d72ef5ca5681eb3d669fb194ad44f83ae 853ab804004ff10bb60156e7967ecb6a8ded42fb a94b9815e968eadcc6decabcad78f6e7f9e81f1c acb7d82523bb69a2be901f84730ff668bd2185ba b53ff75f6ac5e9c688784f33c0330818f8c7a44f c5ba735029693b2515b1303edc9b7d47ab2126d3 cdfe57ac88b1745ee9476b5bd01be7711143c574 d32d16f76fb4c03717b85733294eabcc4188b3e0 d49cc6dbf1ab244c92f1a47ecacaaf1e1555374c dd5cd775d10c26f16aaa048c09998d12bc4a3455 de51c6e35a263caa65d6c37652b7ab3063edce77 e9e2b5014d9d04cb75e2406a438920a21068c45b f489ba015c1beae76210fde124bfade236ce931a Package: libcsexp-ocaml Priority: optional Section: ocaml Installed-Size: 129 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml-csexp Version: 1.5.2-4+cx1 Provides: libcsexp-ocaml-kovs3 Depends: ocaml-base-4.13.1 Filename: pool/main/o/ocaml-csexp/libcsexp-ocaml_1.5.2-4+cx1_amd64.deb Size: 39472 MD5sum: a08ed853b91d7764616d46c0a915ba1b SHA1: eea3cdd29af83839e705451bb90c54f9137b4dba SHA256: d0092c0e1f46f24ef0e9df91ad42ba915d3d069ddbe4f183ff0adf53ab821eca SHA512: 0e62b6d32f9db5efd45ff1563c94d816153b6f8e974667604f4a460cc407b733021c89dfe95a7f3b986a9ac2de3b53a808cf4ab051ce82ee154c2648cb70322c Description: parsing and printing of S-expressions in Canonical form (runtime) This library provides minimal support for Canonical S-expressions. Canonical S-expressions are a binary encoding of S-expressions that is super simple and well suited for communication between programs. . This library only provides a few helpers for simple applications. If you need more advanced support, such as parsing from more fancy input sources, you should consider copying the code of this library given how simple parsing S-expressions in canonical form is. . To avoid a dependency on a particular S-expression library, the only module of this library is parameterised by the type of S-expressions. . This package contains runtime files. Homepage: https://github.com/ocaml-dune/csexp Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-csexp Original-Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-csexp.git Package: libcsexp-ocaml-dbgsym Priority: optional Section: debug Installed-Size: 23 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml-csexp Version: 1.5.2-4+cx1 Depends: libcsexp-ocaml (= 1.5.2-4+cx1) Filename: pool/main/o/ocaml-csexp/libcsexp-ocaml-dbgsym_1.5.2-4+cx1_amd64.deb Size: 5840 MD5sum: f44148336be8572ae523ab5c1cf45229 SHA1: 29c72e4e0c2633103a968df688d49487081ddec0 SHA256: 91e63bf780ead4c304d7d6248fc5cc05d9c6d57063e415738ccaa83eee6cd782 SHA512: 326c00da7aee2b5a037595a0263a61a28c23155c142d1dc641144bb48f2e9a0c3becab4b7f7b0716d81d2ed13f508601e291b559bfc35a85b55a0c4b2123e2fb Description: debug symbols for libcsexp-ocaml Auto-Built-Package: debug-symbols Build-Ids: 17aadd63221230e76f75216b7386e541750cdd98 Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-csexp Original-Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-csexp.git Package: libcsexp-ocaml-dev Priority: optional Section: ocaml Installed-Size: 327 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml-csexp Version: 1.5.2-4+cx1 Provides: libcsexp-ocaml-dev-kovs3 Depends: libcsexp-ocaml-kovs3, ocaml-4.13.1 Suggests: ocaml-findlib Filename: pool/main/o/ocaml-csexp/libcsexp-ocaml-dev_1.5.2-4+cx1_amd64.deb Size: 85004 MD5sum: f4a220cf0e176c2a8631bec9da035ade SHA1: 2a135847b6521e9db92e5bdcc038e5c48895afe3 SHA256: 2774f6e41d34ffeb3896c22a4747eab24ec59e57157699d00654d4c2af010d0c SHA512: 4a8e8f135bccb3f897124c05331ce4efbe2f4fef51a62758eeaf88691fcc5d001f0694ec55c6bca51972c1e18d1858fa3f44135be2da044076a39dde0033d05d Description: parsing and printing of S-expressions in Canonical form (dev) This library provides minimal support for Canonical S-expressions. Canonical S-expressions are a binary encoding of S-expressions that is super simple and well suited for communication between programs. . This library only provides a few helpers for simple applications. If you need more advanced support, such as parsing from more fancy input sources, you should consider copying the code of this library given how simple parsing S-expressions in canonical form is. . To avoid a dependency on a particular S-expression library, the only module of this library is parameterised by the type of S-expressions. . This package contains development files. Homepage: https://github.com/ocaml-dune/csexp Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-csexp Original-Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-csexp.git Package: libdune-ocaml-dev Priority: optional Section: ocaml Installed-Size: 19571 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml-dune Version: 3.11.1-1+cx1 Provides: libdune-ocaml-dev-j1yd0 Depends: ocaml-4.13.1, libc6 (>= 2.4) Suggests: ocaml-findlib Filename: pool/main/o/ocaml-dune/libdune-ocaml-dev_3.11.1-1+cx1_amd64.deb Size: 4036388 MD5sum: 989e4f0478f77598f59e7d4c002bfd69 SHA1: 8ad989b4145032cd100111a5135bdc0b7a6f6d6c SHA256: cf52d77e82f730e8e3bf9f54cc02774bb98498cdcd27ab6e7e49f7efc0755c6f SHA512: 9b09fa8c652475b11281620df5044ae16b0fb800e9e01455ef42cb6a05d3afb4167c9953ebc50e2b7d54465d29b5c3e483fe46cbf3e4efc5239e74cce4aeefc1 Description: composable build system for OCaml projects (libraries) Dune is a build system designed for OCaml/Reason projects only. It focuses on providing the user with a consistent experience and takes care of most of the low-level details of OCaml compilation. All you have to do is provide a description of your project and Dune will do the rest. . This package contains libraries provided by the ocaml-dune source package. Homepage: https://github.com/ocaml/dune Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-dune Original-Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-dune.git Package: libdune-ocaml-dev-dbgsym Priority: optional Section: debug Installed-Size: 589 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml-dune Version: 3.11.1-1+cx1 Depends: libdune-ocaml-dev (= 3.11.1-1+cx1) Filename: pool/main/o/ocaml-dune/libdune-ocaml-dev-dbgsym_3.11.1-1+cx1_amd64.deb Size: 169620 MD5sum: 71d76205ab1455e731f5ffeebaa9e139 SHA1: 0e47cdf6edc9cbc9795d28d1b5b6701668ac4edf SHA256: f5a6bda4c7e061a6303c5a5075f04bb1eed4980a755fe7f44dd0e2286f01add0 SHA512: 1b0fc576ae6803d0a9904212d133b40d5007b5868ae7fceb44aa6d5ce512e6ebbfda6b5341cf3148b4f6e2d1c9065eddb692b50d325fece7d43929ebe2d9a2c5 Description: debug symbols for libdune-ocaml-dev Auto-Built-Package: debug-symbols Build-Ids: 0ff79896f064512d3419829664d0acf80904efcb 14969182c6c08f823f2c1b2a80645e757cd10222 1c71e73deb01542701f28b4ce205c3739c6ea156 1e3b5a69b5a56f003e50172b438576e589150139 24521bea2897f631b469bdbcdf2795064f704abb 2fbc7eb2692bfb7d282521a9925e2b0fcc1f35f7 432e9ac3e26a9a2639517b509ee409ca8c7dc967 6591cc601c8b064db999acd4eace728601c34915 7eaeb016b10aa7957db383f39bff90e17aa71811 872c85513ac30d194d75ef16c15dc258fc62879b 891aa32b625d6a31dbf123f6be428e98e8dff924 892a6b40cef1d10be87b729d0d33d25021580f6e a2a1ba829b1b58bb2c9da774f9bb3423fc1c6f37 b9367961e1fe500b7dbdea6f5190fddf8c4bb313 ce3a5c5d45bc02e0c73de571cc5e9d75a54cef5c d071020a83c34a5e733ba08300424714f8191303 d3c2c85cad12e1d62fc90b66b8ae58fdc21a7615 dba522995e647500475279a20155d53419ed1fb7 fa6bbb13f3bb42e24cddbbce23aa18e4a2ba67ff Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-dune Original-Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-dune.git Package: libi2util-dev Priority: optional Section: libdevel Installed-Size: 191 Maintainer: Cloud X OS Support Original-Maintainer: perfSONAR developers Architecture: amd64 Source: i2util Version: 4.4.6-2+cx1 Filename: pool/main/i/i2util/libi2util-dev_4.4.6-2+cx1_amd64.deb Size: 53580 MD5sum: 4081b2542b17931fb552dfa87db869e4 SHA1: ac648d0696ab6793e058d8ac916aca9de0adda06 SHA256: 7755663023865ba5d9ce5f95cecbc165a5eaf3bb593cc10567609a715070bf28 SHA512: 8d9106980e6736b97ec5ada94712ab2b75b4e952891d827834013d4b79317db2ed99511ac9f12464157ffb5564abb70302277e292917993646b109c4f0475a06 Description: Internet2 utility library (development files) I2utils is a small support library with a set of command line tools needed by several software projects from Internet2, most notably bwctl. . This is the development package which contains headers files and the static i2util library. Homepage: https://github.com/perfsonar/i2util Multi-Arch: same Package: libnftables-dev Priority: optional Section: libdevel Installed-Size: 44 Maintainer: Cloud X OS Support Architecture: amd64 Source: nftables Version: 1.0.9-1+cx1 Depends: libnftables1 (= 1.0.9-1+cx1) Filename: pool/main/n/nftables/libnftables-dev_1.0.9-1+cx1_amd64.deb Size: 12800 MD5sum: 71ab29abd3721526ede1617073ae40c4 SHA1: 2d2ec063453db377973038b140eb9fea7071608f SHA256: 44fbfb33438201be265aa952dd13677e23d95f3ffb56d3219d6d5212297d2885 SHA512: 8a2f7d60a666ef9789f9490881547d91eb9c5beb9d246a7737f682695280dcb64e856afb7ff18a054a39f3de32e51eee8c076a341e3afb65a8839f48d7873055 Description: Development files for libnftables This library provides high level semantics to interact with the nftables framework by Netfilter project. . nftables replaces the old popular iptables, ip6tables, arptables and ebtables. . Netfilter software and nftables in particular are used in applications such as Internet connection sharing, firewalls, IP accounting, transparent proxying, advanced routing and traffic control. . A Linux kernel >= 3.13 is required. However, >= 4.14 is recommended. . This package provides development files and static libraries. Homepage: https://www.netfilter.org/ Multi-Arch: same Package: libnftables1 Priority: optional Section: libs Installed-Size: 955 Maintainer: Cloud X OS Support Architecture: amd64 Source: nftables Version: 1.0.9-1+cx1 Depends: libc6 (>= 2.34), libgmp10 (>= 2:6.2.1+dfsg1), libjansson4 (>= 2.14), libmnl0 (>= 1.0.3-4~), libnftnl11 (>= 1.2.6), libxtables12 (>= 1.6.0+snapshot20161117) Filename: pool/main/n/nftables/libnftables1_1.0.9-1+cx1_amd64.deb Size: 299140 MD5sum: 0f76f59ede2cdf10665409c681ef2f58 SHA1: 49ab34d4ccb49a70f7f103d6175f3db6d7792441 SHA256: d7b919aacb9a12ea1d988a3c9f4a457c12513257f2370a1d0c475051e4aff1fd SHA512: a024de8ae9874456b9203fe4f884a39be1e34d55712d6dd4111aaed84e799668fec8c3d65dd4da118f29a221eed6fe05a926c2736ee712d124bab5e80f0d54d5 Description: Netfilter nftables high level userspace API library This library provides high level semantics to interact with the nftables framework by Netfilter project. . nftables replaces the old popular iptables, ip6tables, arptables and ebtables. . Netfilter software and nftables in particular are used in applications such as Internet connection sharing, firewalls, IP accounting, transparent proxying, advanced routing and traffic control. . A Linux kernel >= 3.13 is required. However, >= 4.14 is recommended. . This package contains the libnftables library. Homepage: https://www.netfilter.org/ Multi-Arch: same Package: libnftables1-dbgsym Priority: optional Section: debug Installed-Size: 1012 Maintainer: Cloud X OS Support Architecture: amd64 Source: nftables Version: 1.0.9-1+cx1 Depends: libnftables1 (= 1.0.9-1+cx1) Filename: pool/main/n/nftables/libnftables1-dbgsym_1.0.9-1+cx1_amd64.deb Size: 946196 MD5sum: 5ba46add33a1d86ce56d75683a76e4d6 SHA1: a846ad55cda0b4ed7e5ff48885ef613e797a1f99 SHA256: 4e27a72fb5495892dce6fa9a90b143eb78bd5d6363b8ff14f38bbbf0d7b3246b SHA512: 5f8663d8de9ec03ef2bf1cb5dca54b34e26e146fce3bf1decacd2309358ff03ef0185e0d87edd612768319e0e16eeebda76840576595c73695047320aafa7540 Description: debug symbols for libnftables1 Auto-Built-Package: debug-symbols Build-Ids: 9caaefc0fbb12eacbd4aedb62e9328cea8b3c823 Multi-Arch: same Package: libnftnl-dev Priority: optional Section: libdevel Installed-Size: 676 Maintainer: Cloud X OS Support Original-Maintainer: Debian Netfilter Packaging Team Architecture: amd64 Source: libnftnl Version: 1.2.6-2+cx1 Depends: libnftnl11 (= 1.2.6-2+cx1), pkg-config Suggests: libnftnl-dev-doc Filename: pool/main/libn/libnftnl/libnftnl-dev_1.2.6-2+cx1_amd64.deb Size: 87184 MD5sum: b27e9b80cf7bbeb0ce6757df294bc4f9 SHA1: c3dc3c423c11bafe3e01c382de852dd4bbdc330b SHA256: 486215770238bc173661c19ac2a7b4d9504fdcdbc670112324db8247b8396d97 SHA512: ec97a608f9d854e2ab482102f78c99fd61fedc36394ec04c571a12e3d8214c12de3f2024f979761d7b49a4ff45fc1488f5e8fad2a0f8d1e3c5562e6a4dbc2824 Description: Development files for libnftnl libnftnl is the low-level library for Netfilter 4th generation framework nftables. . Is the user-space library for low-level interaction with nftables Netlink's API over libmnl. . This package provides development files and static libraries. Homepage: https://git.netfilter.org/libnftnl Multi-Arch: same Original-Vcs-Browser: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl Original-Vcs-Git: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl.git Package: libnftnl-dev-doc Priority: optional Section: doc Installed-Size: 5350 Maintainer: Cloud X OS Support Original-Maintainer: Debian Netfilter Packaging Team Architecture: all Source: libnftnl Version: 1.2.6-2+cx1 Filename: pool/main/libn/libnftnl/libnftnl-dev-doc_1.2.6-2+cx1_all.deb Size: 344992 MD5sum: cacbc94810ec7d80be5988b22da157ee SHA1: 923e3a2b589cf83c90e5b944a72707d21375e3e7 SHA256: 0b66f190aba49593990fb30638c7552a092a601ffbafde930b99dfe62c4c7d7a SHA512: bc2d8596468ee9ff6df66af38da56f741f84471149fe33bc838420bac3077e378cc1fb27eb1fc5e384e68837b32138f18ab5a43fbb95f1cfb11b9703fdf25f91 Description: Doxygen-generated documentation for libnftnl-dev libnftnl is the low-level library for Netfilter 4th generation framework nftables. . Is the user-space library for low-level interaction with nftables Netlink's API over libmnl. . This package provides additional doxygen-generated documentation for the libnftnl-dev package. Homepage: https://git.netfilter.org/libnftnl Multi-Arch: foreign Original-Vcs-Browser: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl Original-Vcs-Git: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl.git Package: libnftnl11 Priority: optional Section: libs Installed-Size: 238 Maintainer: Cloud X OS Support Original-Maintainer: Debian Netfilter Packaging Team Architecture: amd64 Source: libnftnl Version: 1.2.6-2+cx1 Depends: libc6 (>= 2.34), libmnl0 (>= 1.0.3-4~) Filename: pool/main/libn/libnftnl/libnftnl11_1.2.6-2+cx1_amd64.deb Size: 63120 MD5sum: 0f01453dd1db0961e560ee3f337014c3 SHA1: 9169ef7bbd20ebce4a9979fb5df881cc9ea07e3e SHA256: a2cbdfc00eedf2f652026ba2c9800df17027450f81391c12c58367fad5481133 SHA512: f024bd1e36bc0c3d116a6035a8f9317931f4b78f80379c3885f1ff9c6a457d11de7f359eca0531ee50629116f391340f3a5569cc602ca0ced2005ec8131cdf40 Description: Netfilter nftables userspace API library libnftnl is the low-level library for Netfilter 4th generation framework nftables. . Is the user-space library for low-level interaction with nftables Netlink's API over libmnl. Homepage: https://git.netfilter.org/libnftnl Multi-Arch: same Original-Vcs-Browser: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl Original-Vcs-Git: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl.git Package: libnftnl11-dbgsym Priority: optional Section: debug Installed-Size: 284 Maintainer: Cloud X OS Support Original-Maintainer: Debian Netfilter Packaging Team Architecture: amd64 Source: libnftnl Version: 1.2.6-2+cx1 Depends: libnftnl11 (= 1.2.6-2+cx1) Filename: pool/main/libn/libnftnl/libnftnl11-dbgsym_1.2.6-2+cx1_amd64.deb Size: 245704 MD5sum: e8f818dff78d87dc6f4262ce40ec9116 SHA1: 91e5fcef2cfeaf27f5a7d24538476daef934926d SHA256: 427b0493f317efef1e10c31210001d3d99b6bceee4b3cf0329165ac4332e83f3 SHA512: a2e94c2b44019cbfb20128a91ab48799256737d94985b2bef339c344019d430a22d794bf1284c2a35ac319a44c2ada0fa3faf935bf7598f48ea9ab8a4d276100 Description: debug symbols for libnftnl11 Auto-Built-Package: debug-symbols Build-Ids: 4fb384479f0c0944814faaa73fe840e747afccd7 Multi-Arch: same Original-Vcs-Browser: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl Original-Vcs-Git: https://salsa.debian.org/pkg-netfilter-team/pkg-libnftnl.git Package: libnss-tacplus Priority: optional Section: libs Installed-Size: 57 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Version: 1.0.4-cl5.1.0u11+cx1 Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.14), libtac2 (>= 1.4.1~), libtacplus-map1 (>= 1.0.1-cl4u1) Filename: pool/main/libn/libnss-tacplus/libnss-tacplus_1.0.4-cl5.1.0u11+cx1_amd64.deb Size: 17216 MD5sum: ee9c615805f300b0d84896ae38ca684e SHA1: 106c3064be35cf620bd223a72ba540de73d30833 SHA256: ae3916e565981dbc9286acf40c5a2b87e9a3113d270e6b081e96911268a10811 SHA512: 8b39fcbb1564c44242e0212afb18be52142cd73c42ba7067a720d64cdbb6dfef1bb7088a111f4cc1734354a49cc2147c1a42847bf0572c7be1a877448d94e97c Description: NSS module for TACACS+ authentication without local passwd entry Performs getpwname and getpwuid lookups via NSS for users logged in via tacacs authentication, and mapping done with libtacplus_map Homepage: http://www.cumulusnetworks.com Vcs-Hash: cf2f734609a59da41248ed45e95807998a4a75f3 Package: libnss-tacplus-dbgsym Priority: optional Section: debug Installed-Size: 14 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libnss-tacplus Version: 1.0.4-cl5.1.0u11+cx1 Depends: libnss-tacplus (= 1.0.4-cl5.1.0u11+cx1) Filename: pool/main/libn/libnss-tacplus/libnss-tacplus-dbgsym_1.0.4-cl5.1.0u11+cx1_amd64.deb Size: 1860 MD5sum: 828f709ef2d6a2836b5fd01b825c9860 SHA1: 086c5839b972d91b2c39760698b65c97b5b52cc1 SHA256: e951209a0adfc6607c091989ae0eb53f8c8cab237fc09cc36f758f0611ad0d28 SHA512: d48b64701c04f533dd69808a836edc951512fc5fa258179fdf21cdd82ac56074fffb217d8c481d1a243213647dcf1a28ace5975ccaca4e87077adb86a7d03a72 Description: debug symbols for libnss-tacplus Auto-Built-Package: debug-symbols Build-Ids: 8282b27dc5e8a0fe5caf8b2035416c066563742b Vcs-Hash: cf2f734609a59da41248ed45e95807998a4a75f3 Package: libpam-radius-auth Priority: extra Section: libs Installed-Size: 83 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Version: 1.5.0-cl5.0.0u7+cx1 Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.14), libpam0g (>= 0.99.7.1), radius-shell Filename: pool/main/libp/libpam-radius-auth/libpam-radius-auth_1.5.0-cl5.0.0u7+cx1_amd64.deb Size: 30544 MD5sum: f4333815e5b629d73da263a1b39d92d0 SHA1: 4f5feed43be62dbeda331713e9e0b54d8e3713f6 SHA256: 7a7e1f5f3f11bddb96e9ed43766a5f749c38776ad650f80e7352819a47f22acd SHA512: 695f214c79bc949857f2d4d13ab1f3113f27bf13304ee29f610a3d265d32a5c9c8715214be79adb9b2ae051ffb8b0f6bfe83cd1898db4015958e8d94ea14c915 Description: PAM RADIUS client authentication module This is the PAM to RADIUS authentication module. It allows any PAM-capable machine to become a RADIUS client for authentication and accounting requests. You will, however, need to supply your own RADIUS server to perform the actual authentication Vcs-Hash: 529596140af97913df97f5ea2d67a921463973f5 Package: libpam-radius-auth-dbgsym Priority: optional Section: debug Installed-Size: 116 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-radius-auth Version: 1.5.0-cl5.0.0u7+cx1 Depends: libpam-radius-auth (= 1.5.0-cl5.0.0u7+cx1) Filename: pool/main/libp/libpam-radius-auth/libpam-radius-auth-dbgsym_1.5.0-cl5.0.0u7+cx1_amd64.deb Size: 103532 MD5sum: 5115cb616c6731385ef26c01d7910589 SHA1: 886d432b78088894c2793928b86ddce185287e41 SHA256: c96ee9e1f812f3d13892e66a50ca82b2a3fbabab4bc4acefcf7b4c38d5f66ba1 SHA512: 2993dc3a7fbfbeffeb11af133365b3a46714913ea0787063e488b346791f7f13bf5aa406d8eae0310083280187702b86c95381e513954de70b42b8d59b189cb9 Description: debug symbols for libpam-radius-auth Auto-Built-Package: debug-symbols Build-Ids: 6956858b57e0465e70446bf3c3a7a955e4b7e5bc Vcs-Hash: 529596140af97913df97f5ea2d67a921463973f5 Package: libpam-tacplus Priority: extra Section: admin Installed-Size: 73 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Version: 1.4.3-cl5.1.0u5+cx1 Depends: libc6 (>= 2.4), libpam0g (>= 0.99.7.1), libtac2 (>= 1.4.0), libtacplus-map1 (>= 1.0.0), libpam-runtime Filename: pool/main/libp/libpam-tacplus/libpam-tacplus_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 29600 MD5sum: 68b21b735c6bed269fc15b1f9ab143e0 SHA1: 6c01f07230be1f28e529a09d54044cf69c37b4f4 SHA256: b5c3e7b511d494e2adf54779bf92e35fa3cbd9ce928032c550929f64bd51e7b5 SHA512: f2ad531cad5aa04347bb7432668a529e4d9aa7a260fc27b8db4fea362878d63368fd3e02d1869ae265670acbe13f2b5f68ab73e073037769a7563520992da01d Description: PAM module for using TACACS+ as an authentication service This PAM module support authentication, authorization (account management) and accounting (session management) performed using TACACS+ protocol designed by Cisco. Homepage: http://www.cumulusnetworks.com Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libpam-tacplus-dbgsym Priority: optional Section: debug Installed-Size: 46 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-tacplus Version: 1.4.3-cl5.1.0u5+cx1 Depends: libpam-tacplus (= 1.4.3-cl5.1.0u5+cx1) Filename: pool/main/libp/libpam-tacplus/libpam-tacplus-dbgsym_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 30476 MD5sum: 26b345304c944fe18c6ce5068ee06340 SHA1: 908985962e8a57e7b56c36d189e869ca3f58af35 SHA256: c9598c541407f70ff54b9b818c11be957715393f1399744bf00180921cae63d5 SHA512: 05814372c218628cf35690ed4a2654e159272240547de13d5e9a9de121dedf1f47f39a81368796e6cb1f674ae50192465a07767025d6049d133db01ce22f70fb Description: debug symbols for libpam-tacplus Auto-Built-Package: debug-symbols Build-Ids: c6eefa7748cca88d8fff8e34e236f745c08e84e1 Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libpam-tacplus-dev Priority: extra Section: libdevel Installed-Size: 24 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-tacplus Version: 1.4.3-cl5.1.0u5+cx1 Depends: libpam-tacplus (= 1.4.3-cl5.1.0u5+cx1), libc6-dev | libc-dev Filename: pool/main/libp/libpam-tacplus/libpam-tacplus-dev_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 9704 MD5sum: 8f6c36c61488bc4eedf6881ec3ba5fc5 SHA1: fbda108382c8de0928382d5fdd229b38b2c63335 SHA256: f31a1b97e6f863d65c9c14df92d649cb0badde6acfab075b028d50721f04560c SHA512: 67b431cc38ab63b8916b0051097117f1142f4d0c1ff8795d059964c97a8996d24b525110f1c68cf03405a837c593aa516dbae540fcababb5d00e280a7f514908 Description: Development files for PAM module for using TACACS+ authentication Provides header files for development with libpam-tacplus Homepage: http://www.cumulusnetworks.com Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libstrongswan Priority: optional Section: net Installed-Size: 1467 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libc6 (>= 2.34), libcap2 (>= 1:2.10), libgmp10 (>= 2:6.2.1+dfsg1), libsystemd0 (>= 227) Recommends: libstrongswan-standard-plugins Suggests: libstrongswan-extra-plugins Filename: pool/main/s/strongswan/libstrongswan_5.9.11-2+vyos0+cx1_amd64.deb Size: 436948 MD5sum: cb56a3440a546b9863b7ab5aa9454fd4 SHA1: 39cf49ab419ae9b4f027b467cefa616a353db69f SHA256: ae531c04d0eed53ae2c3e234de3daf1124d046d9fab139ef9f685f806afab1fe SHA512: 24436c764f32eb8bbaad1dcdfc835a821bce5e851df05df439e981100914302eb376a07cf98d43b4a8cf9ec745a7fc7c064514c4da177c1eab1f70bd619908ad Description: strongSwan utility and crypto library The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package provides the underlying libraries of charon and other strongSwan components. It is built in a modular way and is extendable through various plugins. . Some default (as specified by the strongSwan projet) plugins are included. For libstrongswan (cryptographic backends, URI fetchers and database layers): - aes (AES-128/192/256 cipher software implementation) - constraints (X.509 certificate advanced constraint checking) - dnskey (Parse RFC 4034 public keys) - drbg (NIST SP-800-90A Deterministic Random Bit Generator) - fips-prf (PRF specified by FIPS, used by EAP-SIM/AKA algorithms) - gmp (RSA/DH crypto backend based on libgmp) - hmac (HMAC wrapper using various hashers) - md5 (MD5 hasher software implementation) - mgf1 (Mask Generation Functions based on the SHA-1, SHA-256 and SHA-512) - nonce (Default nonce generation plugin) - pem (PEM encoding/decoding routines) - pgp (PGP encoding/decoding routines) - pkcs1 (PKCS#1 encoding/decoding routines) - pkcs8 (PKCS#8 decoding routines) - pkcs12 (PKCS#12 decoding routines) - pubkey (Wrapper to handle raw public keys as trusted certificates) - random (RNG reading from /dev/[u]random) - rc2 (RC2 cipher software implementation) - revocation (X.509 CRL/OCSP revocation checking) - sha1 (SHA1 hasher software implementation) - sha2 (SHA256/SHA384/SHA512 hasher software implementation) - sshkey (SSH key decoding routines) - x509 (Advanced X.509 plugin for parsing/generating X.509 certificates/CRLs and OCSP messages) - xcbc (XCBC wrapper using various ciphers) - attr (Provides IKE attributes configured in strongswan.conf) - kernel-netlink [linux] (IPsec/Networking kernel interface using Linux Netlink) - kernel-pfkey [kfreebsd] (IPsec kernel interface using PF_KEY) - kernel-pfroute [kfreebsd] (Networking kernel interface using PF_ROUTE) - resolve (Writes name servers received via IKE to a resolv.conf file or installs them via resolvconf(8)) Homepage: http://www.strongswan.org Package: libstrongswan-dbgsym Priority: optional Section: debug Installed-Size: 1707 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/libstrongswan-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 1475760 MD5sum: a74abb0c79b46f1e4ab626bf54aa9a40 SHA1: 31a04393c6257dfa8955cfca5373d9cf977a6598 SHA256: c317d256d8b194da5a07493070123bece263a4e0751c9cbffd3447f1687bd4ee SHA512: 31039e36db6057b575137e83ccb505d6642ebf38dbdf6a3dd9c74019cb243053360701017412b4104112eb71af58749c0e741a4073b670bcf31f19d5eb1abe10 Description: debug symbols for libstrongswan Auto-Built-Package: debug-symbols Build-Ids: 0c41653eacb4fa9a03c1f8b16fcfb814e58be2bf 0f1a2a30fc5a5c62a00c5b535b876c14145caf2e 17a25afd843c037b975ea270b1f91643e220a2d9 1f6203c76d318947fc307a37f4fc2d8badf0a2e5 2e56f5f311e8b5e919783d7cb8427aa337922f8a 2e6239a14a188f2a748a975fe17cf5b53fb200a1 2f04f071209740a09d3920204710e3def9d14244 42b72224966248fde7c3a5f328507a16f57f2e19 44dc9dc4422c06eaef7320444df98d44e62bbbed 52cacc02d184539d7e03c6185d0c572ffa7a044b 5539ed775a7be8a97920fb3bcb06fda0913b453f 5c65314e7fc6ce4e5d57d3acb5bf3d41e1ccc390 63ddfc0b6cbdc1aacfa52764ddea45e964cccab3 73fb9478ffcae88c9585d17b95c3048db5a60f2f 90a0a6947773a787a8282dbc1381c4829252cf22 964206bb5c82b1eda0348049b33105cdea7c2520 9766d7ef96e1a052d97c2cb061bb9510c6200b7c a8d33a009d7ed3e9b98a9f7c1872ec54993144cf ae6c506369e6403c1df128ad4684b7a0a1cff42b af1f673c772dae8c501f79978f2cf8f37829ca22 b347f3e12594be4658a9da2b3265acb80e9af85a b88fa79f51aec0f425710b826de6b87460d456e7 c1a2ab1d4f2b7c439a72c5ff003ac920ed9ee211 e1569df4c3ec9fcf9840fd7c413495ebb531a03b e28b542f515433c97f6efa8d5a1807d94c62df52 e3475bdeb9867106b584db769573f48c777d0071 eb4c1d8016caf9de4f87c65c140568229c9e878c ec0465bb36b9893d76849b85a8e874f83bc2a01c f2882de356501bc2480449075ba9dd0bdabf8c4f fb5c698ae60c400ffc975513dcdc9805daf833db Package: libstrongswan-extra-plugins Priority: optional Section: net Installed-Size: 766 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Replaces: libcharon-extra-plugins (<= 5.5.3-1) Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.34), libcurl4 (>= 7.56.1), libgcrypt20 (>= 1.10.0), libgpg-error0 (>= 1.14), libtss2-sys1 (>= 3.0.1) Breaks: libcharon-extra-plugins (<= 5.5.3-1) Filename: pool/main/s/strongswan/libstrongswan-extra-plugins_5.9.11-2+vyos0+cx1_amd64.deb Size: 270048 MD5sum: 0387414dfc9ff0c2e35d6290a9dd3713 SHA1: a302f1b48488b5d8613190906559d9dda4e71551 SHA256: 4a5be424801155b4b14d51fbb48dd6680362d3710a47fc4d026008922a860782 SHA512: ab54076e06ba43eaa8a4a2fedbc614abea672b0d909d4c08ee5c267c3d85864a9b008a6ae6db1c975f4e30e286f47d81d604e351215aafbccba569a065308245 Description: strongSwan utility and crypto library (extra plugins) The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package provides extra plugins for the strongSwan utility and cryptographic library. . Included plugins are: - af-alg [linux] (AF_ALG Linux crypto API interface, provides ciphers/hashers/hmac/xcbc) - ccm (CCM cipher mode wrapper) - cmac (CMAC cipher mode wrapper) - ctr (CTR cipher mode wrapper) - curl (libcurl based HTTP/FTP fetcher) - curve25519 (support for Diffie-Hellman group 31 using Curve25519 and support for the Ed25519 digital signature algorithm for IKEv2) - gcrypt (Crypto backend based on libgcrypt, provides RSA/DH/ciphers/hashers/rng) - ldap (LDAP fetching plugin based on libldap) - padlock (VIA padlock crypto backend, provides AES128/SHA1) - pkcs11 (PKCS#11 smartcard backend) - rdrand (High quality / high performance random source using the Intel rdrand instruction found on Ivy Bridge processors) - test-vectors (Set of test vectors for various algorithms) . Also included is the libtpmtss library adding support for TPM plugin (https://wiki.strongswan.org/projects/strongswan/wiki/TpmPlugin) Homepage: http://www.strongswan.org Package: libstrongswan-extra-plugins-dbgsym Priority: optional Section: debug Installed-Size: 721 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan-extra-plugins (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/libstrongswan-extra-plugins-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 603276 MD5sum: eefed410e905b683b3b4228d7d6f9ec0 SHA1: 44f7579d39824dc957fe1a155c6d7e075bbc9880 SHA256: 86c87e57a164ae649b5993bc881b86ef1dbe87adb86dc4219e6dc8fac9df6778 SHA512: fcede2de0cdafc88405048a6fdf3a95dbe4cf77f5122580cf3aa04c2f635035ee05c23aa313d33d344adcda742d06fcc3e40244eaf5ba521d710e6b1220bde07 Description: debug symbols for libstrongswan-extra-plugins Auto-Built-Package: debug-symbols Build-Ids: 030ade9679e1122c24e18ee7fb77acee7e75d6c7 113f228b9e9db2ebf5263e6844ee555a2bfd28aa 1575e831696ef81c857095a5e4595c892baf6ed1 18202c16e0e1c73c67c1f1ce534e3ba842536bdd 2e0d715b312fbc07ea01c682e90c6c2feb2d0942 60e39e6116060a7c63aca794b6f716ccc3d8cc5a 8d6e84e190112900f439b8c1fed4caf7a0a3a2d0 95ee655cd80fa10db9a4caf8ea5efb67d6ba8888 b4560531d24276a0f478903a740d370db0ffd1df bde95d2357537986e5ec1b28c6addbd3600c7191 ccb2bfc2be2edc71cb629f53d1086ce3af547495 d0a2e2ca6db07f6d6d817bd9e20d0c2ae34ad407 d5bdcb5904a1dfd2754ed7e1bd34ebd72f5aac77 f1d2306d0d9cb187f0fdb08f952b60344d8139e5 Package: libstrongswan-standard-plugins Priority: optional Section: net Installed-Size: 393 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.25), libip4tc2 (>= 1.8.3), libssl3 (>= 3.0.0) Filename: pool/main/s/strongswan/libstrongswan-standard-plugins_5.9.11-2+vyos0+cx1_amd64.deb Size: 140364 MD5sum: 75fee1757f3ab87df40f53952a6b0191 SHA1: 23e886c1ace8322a9408da3568bac18b7c3936e8 SHA256: 7f0f915b7ccea952a4092c930d6e19101e15906c5c6920c80d2b6bac4ba4aa8b SHA512: 980120df24e17cd3fe3e132915909e43141c9c6f43f103cb0238d1bebd21809885c6c1b8c6370a8dff572582c5f22d350e8beef7f524d613202cf0964363faab Description: strongSwan utility and crypto library (standard plugins) The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package provides some common plugins for the strongSwan utility and cryptograhic library. . Included plugins are: - agent (RSA/ECDSA private key backend connecting to SSH-Agent) - gcm (GCM cipher mode wrapper) - openssl (Crypto backend based on OpenSSL, provides RSA/ECDSA/DH/ECDH/ciphers/hashers/HMAC/X.509/CRL/RNG) Homepage: http://www.strongswan.org Package: libstrongswan-standard-plugins-dbgsym Priority: optional Section: debug Installed-Size: 500 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan-standard-plugins (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/libstrongswan-standard-plugins-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 444736 MD5sum: ef425a8bb0a024030fb8fa9564022f21 SHA1: fefc2b8c16769578e9945d191142536b40243e7a SHA256: 66d33b80951509e2c79bedd6c9f2ead9ca96b554d6c386c0057aab1a74fc30be SHA512: 67ba515f5a6f2dd727431a8a7d71c145d977c6944ed93a6439986a5e7db2cd2d8685989a7b6d14d47c7c8a55306b1d5656da2c35f47d7ca92292dfd26fb38b27 Description: debug symbols for libstrongswan-standard-plugins Auto-Built-Package: debug-symbols Build-Ids: 11f642d108b0c477e3e2d5b9193282594055918f 4cbdaa6ddba563bb7e2fccfcf6d49a78ace8852e 5e6344cfbfd895b8478b6eb394a24bd88067206c 65fa98f62e7599a4b1ced50a754b081616c439e7 def731c94e7c63e15b9cfdbf24f38bb530d245b2 Package: libtac-dev Priority: extra Section: libdevel Installed-Size: 27 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-tacplus Version: 1.4.3-cl5.1.0u5+cx1 Depends: libtac2 (= 1.4.3-cl5.1.0u5+cx1), libc6-dev | libc-dev Filename: pool/main/libp/libpam-tacplus/libtac-dev_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 9908 MD5sum: a15135c297b234ffb20164463b6b3424 SHA1: b2416a7c86ee0b8530a83df328b159615be54a25 SHA256: 6fc3669753f8b823f7fe41ec3c47508ae8384936f2590760e0ccc2591553c4e5 SHA512: 6e33cf3fff66533d6594549692505d7ef83a42caceac336de3caeae44951969c3b34097a51d92eb6fa721e1881a32001976f690fe6fa3581ced64acb38fe5bc8 Description: Development files for TACACS+ protocol library Contains C header files and development files for libtac, a TACACS+ protocol implementation. Homepage: http://www.cumulusnetworks.com Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libtac2 Priority: extra Section: admin Installed-Size: 56 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-tacplus Version: 1.4.3-cl5.1.0u5+cx1 Depends: libc6 (>= 2.15), libaudit1 Filename: pool/main/libp/libpam-tacplus/libtac2_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 20584 MD5sum: a2de2fa5736714902f6f865fda24a80f SHA1: 349896ae65b42a532e3142f39623e11ee1cd8682 SHA256: ee655cc8ed45637feb595893f245baaa5faf1347573b56f95baad841ccc9f017 SHA512: c8d5cf8df415f325ee898487dc6975d458378cc5db6e3ef66f9c393982db04d6d427ade688ec8a4801d1fa20858587f0daba692588453a660329eb2eb37bef4e Description: TACACS+ protocol library This library implemenents the fundamentls of the TACACS+ protocol and supports authentication, authorization (account management) and accounting (session management). Homepage: http://www.cumulusnetworks.com Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libtac2-bin Priority: extra Section: admin Installed-Size: 48 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-tacplus Version: 1.4.3-cl5.1.0u5+cx1 Depends: libc6 (>= 2.4), libtac2 (>= 1.4.0) Filename: pool/main/libp/libpam-tacplus/libtac2-bin_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 16028 MD5sum: 97f38666c1dab9ff2a65870f2477cc1b SHA1: 9415a8a1af621536f9b43f636e30145be2810921 SHA256: 0890822b3579b8e84a10e0a34057d2fefd044e518bab87d9b8e32096855fa98d SHA512: 604ddd116b73ed3c93b250c40c90ce7b776cbb6da581a9269b7ff2ff85d8f05f3af2bf368c2649ae9c80a59472f028f16736e64f7f0b91264a70557795fd1276 Description: TACACS+ client program Simple command-line client for TACACS+ testing and scripting Homepage: http://www.cumulusnetworks.com Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libtac2-bin-dbgsym Priority: optional Section: debug Installed-Size: 30 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-tacplus Version: 1.4.3-cl5.1.0u5+cx1 Depends: libtac2-bin (= 1.4.3-cl5.1.0u5+cx1) Filename: pool/main/libp/libpam-tacplus/libtac2-bin-dbgsym_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 15480 MD5sum: 1207156a5d56a48f3e5263490d0d904e SHA1: 666c8c55c3a0d248037abb44c9cd47f618180ef8 SHA256: c0e54575a2177470ca4cc6a3c9d3d509e78f530be3a8d5f08683ad1a440c5f6e SHA512: 14d68f02676d58f0749d2bfdf84e3ce770f7b704bf35ff8594a52b6d167edd663052ab70a41b43c19695d1b4c5dde9621d2a54dcf030c78807ba2526b6a7eed6 Description: debug symbols for libtac2-bin Auto-Built-Package: debug-symbols Build-Ids: ec400f3bca9576905c0f4952acc2f4e2bb36cdc6 Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libtac2-dbgsym Priority: optional Section: debug Installed-Size: 61 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-tacplus Version: 1.4.3-cl5.1.0u5+cx1 Depends: libtac2 (= 1.4.3-cl5.1.0u5+cx1) Filename: pool/main/libp/libpam-tacplus/libtac2-dbgsym_1.4.3-cl5.1.0u5+cx1_amd64.deb Size: 44776 MD5sum: 5ddd49e37a7b04bcb170a9d0eb5bc25c SHA1: 9e03496ab7cd91e5b8f573fe069b78b677601d2f SHA256: b125f7a8275912ac88eaede2cc2cb76dbb1e5fcd1cb352bda6176ab281d71f39 SHA512: 010437902dcb2380d35c238af31fe0633e06ef17d8e7b75bce21976a7906e5ec40b0f6853565fc865ac4d736cff7c274d437c1a07b7aa86583c987221bd85972 Description: debug symbols for libtac2 Auto-Built-Package: debug-symbols Build-Ids: 81b48bcd50cabaddfce720e743d5b7be95d639b5 Vcs-Hash: 1b6c1f14cc288b71c6c7005a60d2d7d7b617f6a0 Package: libtacplus-map-dev Priority: extra Section: libdevel Installed-Size: 20 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libtacplus-map Version: 1.0.1-cl5.1.0u9+cx1 Depends: libtacplus-map1 (= 1.0.1-cl5.1.0u9+cx1), libc-dev Filename: pool/main/libt/libtacplus-map/libtacplus-map-dev_1.0.1-cl5.1.0u9+cx1_amd64.deb Size: 4840 MD5sum: 54a5d918a77bd44d38801d23f121f4f3 SHA1: ed136bb650b2962675607b8d78d8a83c0d72e935 SHA256: e105c07104d5759dde27d2f2356469216a51189dd5966d4f2a2cffebd3c6016c SHA512: 90fbda28721cbb5af36e6e5ef9121487cc9bd1a12b1161a260bae19a56983378dcea69c4315771109a01795fe6d68b56d82c0d1973d0e3cb05a0225acbe21f07 Description: Development files for TACACS+ user-mapping library Header files and .so shared library link for APIs to support local TACACS mapping of accounts Homepage: http://www.cumulusnetworks.com Vcs-Hash: b68ca01f1e769311831d91e47dbf372527d36764 Package: libtacplus-map1 Priority: extra Section: admin Installed-Size: 41 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libtacplus-map Version: 1.0.1-cl5.1.0u9+cx1 Depends: libaudit1 (>= 1:2.4), libc6 (>= 2.4), adduser Filename: pool/main/libt/libtacplus-map/libtacplus-map1_1.0.1-cl5.1.0u9+cx1_amd64.deb Size: 9700 MD5sum: 58e86a4e4e76ac48691c64c24f4316f0 SHA1: bcbcc35bdbeae526295977e631b233999ce94491 SHA256: 0e2051be05cf2889ccff3816ac0e13d5750f733198571ac77b20d189ceea0645 SHA512: c4ee74a48a39f75b313ccba5b38c9c2ee2a2e251a0c9c69f5180c5cf774a93ed7a6860a624b4394f12cd146f9a18537545668d18cd603cd7b72e47a550519242 Description: Library for mapping TACACS+ users without local /etc/passwd entries APIs to support local mapping, so that TACACS users do not need tacacs user accounts to /etc/passwd to supply home directory, uid, and gid. Homepage: http://www.cumulusnetworks.com Vcs-Hash: b68ca01f1e769311831d91e47dbf372527d36764 Package: libtacplus-map1-dbgsym Priority: optional Section: debug Installed-Size: 31 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libtacplus-map Version: 1.0.1-cl5.1.0u9+cx1 Depends: libtacplus-map1 (= 1.0.1-cl5.1.0u9+cx1) Filename: pool/main/libt/libtacplus-map/libtacplus-map1-dbgsym_1.0.1-cl5.1.0u9+cx1_amd64.deb Size: 16676 MD5sum: 00351e7c98642836af3e40bde8ea5cc2 SHA1: 67e0def131019d7a14e08bbc0bfd769d35e10c87 SHA256: 2c34ddfc435afb55b24f336fa015cbedbb9c1cb5eec7b0f25cb58acb22cc704d SHA512: 72cffde512e1116ac06ddf3b03646a3a0c3f9ef392af68c90126753f6d4feb1ade3feeb4defde7971ad8a36001808bcb3b12cc2becd2462850ba0edc1daec65d Description: debug symbols for libtacplus-map1 Auto-Built-Package: debug-symbols Build-Ids: c552f27727d5e8e03f1975cc81496dfa6c2b93fa Vcs-Hash: b68ca01f1e769311831d91e47dbf372527d36764 Package: libvyatta-cfg-dev Priority: optional Section: libdevel Installed-Size: 1340 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyatta-cfg Version: 0.102.0+vyos2+current5+cx1 Depends: libvyatta-cfg1 (>= 0.102.0+vyos2+current5+cx1), libboost-filesystem1.74.0 Filename: pool/main/v/vyatta-cfg/libvyatta-cfg-dev_0.102.0+vyos2+current5+cx1_amd64.deb Size: 238624 MD5sum: 98b08465f41586222a0b24698f000267 SHA1: d3d7169a32ce721423b97a3656325a782799d0c0 SHA256: c851d3e9055938280a7fa68d65914884917e7c1a71d1bba282265a950facda2a SHA512: 4627e4c819f90372dad5b2b0534fbe5a717d6dc3a08a170a084bc5898e15115c0bef35fef0065abc950322e924200312968b17ddbf9340712ba904f66749660e Description: libvyatta-cfg development package Development header and library files for the Vyatta configuration back-end library. Package: libvyatta-cfg1 Priority: extra Section: contrib/net Installed-Size: 756 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyatta-cfg Version: 0.102.0+vyos2+current5+cx1 Replaces: vyatta-cfg Depends: libsort-versions-perl, libfile-sync-perl, perl (>= 5.36.0-7+deb12u1), perlapi-5.36.0, libapt-pkg6.0 (>= 0.8.0), libboost-filesystem1.74.0 (>= 1.74.0+ds1), libc6 (>= 2.34), libgcc-s1 (>= 3.0), libglib2.0-0 (>= 2.30.0), libperl5.36 (>= 5.36.0), libstdc++6 (>= 11) Filename: pool/main/v/vyatta-cfg/libvyatta-cfg1_0.102.0+vyos2+current5+cx1_amd64.deb Size: 226212 MD5sum: 6f9d3cf1f1ebe58b31ae976ad1aedb48 SHA1: 83f081833d70155939685f2fa8f0684b3fd6378f SHA256: 0d57f10edb7198f2960ebffb87e189f1d970cfbe95244966c00b4f0eafa10829 SHA512: 5d85936e524e036fc406a4480adfe02f481655f475eaf99e0dc44d1109ce5d6d08d6200394129a79f5f6ff39a681f2894836419e7e595914d9aff6a466ff08cd Description: vyatta-cfg back-end library Vyatta configuration back-end library (libvyatta-cfg). Package: libvyatta-cfg1-dbgsym Priority: optional Section: contrib/debug Installed-Size: 2241 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyatta-cfg Version: 0.102.0+vyos2+current5+cx1 Depends: libvyatta-cfg1 (= 0.102.0+vyos2+current5+cx1) Filename: pool/main/v/vyatta-cfg/libvyatta-cfg1-dbgsym_0.102.0+vyos2+current5+cx1_amd64.deb Size: 2171668 MD5sum: 32997be51158b4031fb4d4e3e85ce998 SHA1: cf2186e81c16a2eebc342ddedf7bb2172bdef9b7 SHA256: 9c963c3f7f5671461319d59bcbfbe18e2801ac86fa020460f00d89cf178ae5e0 SHA512: b782ccdb97cbfde4adeadc8d4d535589b4b866b27b76c95b9f122420f6ac325adde29931854499291b18921f53614751cb992a1c6a3c04ab450d935200848c36 Description: debug symbols for libvyatta-cfg1 Auto-Built-Package: debug-symbols Build-Ids: 1a206556bc14d646b57e7273e174c25e2f05c174 d1f19bdb300a41753afda751c12bf8b816d32dda Package: libvyosconfig0 Priority: extra Section: contrib/net Installed-Size: 3067 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 0.0.10+cx1 Depends: libc6 (>= 2.35), libpcre3 Filename: pool/main/libv/libvyosconfig0/libvyosconfig0_0.0.10+cx1_amd64.deb Size: 743220 MD5sum: 989c061cda738410a17aa6c661467973 SHA1: 770e7da3e7ac94817498b086fb2f6dd12704a1a9 SHA256: 9205e01d7d7c4788eddff9154a5db071c84ca70d7372a43ba1e4c7aef8864460 SHA512: aef2f19323a1177f263a9168571096c0f679bdffdb2e91075638b9355251565fda8b19e7573b6cd4554d9f5a60f5b9f08ec23a984327017a5f4a18a66aeba87d Description: VyConf config tree manipulation library VyConf config tree parsing and manipulation library Package: libvyosconfig0-dbgsym Priority: optional Section: contrib/debug Installed-Size: 890 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: libvyosconfig0 Version: 0.0.10+cx1 Depends: libvyosconfig0 (= 0.0.10+cx1) Filename: pool/main/libv/libvyosconfig0/libvyosconfig0-dbgsym_0.0.10+cx1_amd64.deb Size: 331852 MD5sum: cca707282358ed86a501a295983a99e5 SHA1: f729761dcda363f3f970375358eb2650c431a5c1 SHA256: 7cccc62a31ce4fcec9c28a18c61dba6ca354a1728463f918ad55f948ca9a33b3 SHA512: ed9f1baa3c2d2ea03ff08797cb4a83c68d648a3b80a0572df83c2406788a11adc0f7a0923fa7a54244d9eaab41847db6b519f33caeb75356cba97dccd3590532 Description: debug symbols for libvyosconfig0 Auto-Built-Package: debug-symbols Build-Ids: 4990a40b26e90d51f89ab5b5f4deba22a8df9db9 Package: libwpa-client-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Cloud X OS Support Architecture: amd64 Source: wpa Version: 2.10-1028-g6b9c86466+cx1 Replaces: libwpa-dev Breaks: libwpa-dev Filename: pool/main/w/wpa/libwpa-client-dev_2.10-1028-g6b9c86466+cx1_amd64.deb Size: 33560 MD5sum: 24a0ac3cd86d5083c8d7d3bb93672e4e SHA1: fdee58ddf9e7b570eadc10dfcf82de12641c1459 SHA256: 49b7f37ded8f79441f463af960b109b1641dbd7723fef647ad2ec2b7eb0cfc61 SHA512: fd40cbc10eb93fbc05e0079e66f298b2b2afd98e4fb576335b53a21c116ab7dc417c9a38c780c406a8010a378594a80ebfbb1ea3d7023f2f3b3e4ca28a88c362 Description: development files for WPA/WPA2 client support (IEEE 802.11i) wpa-supplicant is a userspace daemon handling connection and authentication in wireless and wired networks, primarily secured with the WPA/WPA2/WPA3 protocols. This software provides key negotiation with the access point (WPA Authenticator), and controls association with IEEE 802.11i networks. . This package contains static libwpa_client library and header files. Homepage: https://w1.fi/wpa_supplicant/ Multi-Arch: same Package: linux-headers-6.6.13-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 52665 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.13-1 Filename: pool/main/l/linux-upstream/linux-headers-6.6.13-amd64-vyos-cx_6.6.13-1_amd64.deb Size: 8955668 MD5sum: 4e5eaef6dd7767a6b070d61b0434a201 SHA1: 270579a1524e58eba5761edeb5ba4a3633d995e1 SHA256: f5e65769ed2155fd686db88248098e9fcf4b46f8e56be86579cee5e86e862eee SHA512: c44509cc2b77d3c2e42cdd19da7e1a6ea398f09999b04be8bbc7ae5e234d7edb96f47765c6b73669690c595e8557902ffd8fe9f925d5b927358d1a466887cd35 Description: Linux kernel headers for 6.6.13-amd64-vyos-cx on amd64 This package provides kernel header files for 6.6.13-amd64-vyos-cx on amd64 . This is useful for people who need to build external modules Homepage: https://www.kernel.org/ Package: linux-headers-6.6.15-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 52673 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.15-1 Filename: pool/main/l/linux-upstream/linux-headers-6.6.15-amd64-vyos-cx_6.6.15-1_amd64.deb Size: 8957660 MD5sum: 5e5d4c3d90bbc06e945f5eb0b580ffd6 SHA1: 24cbe90e64aa126027f7d791d4d7ccaf0d328fcc SHA256: 7eab477e477c901667276d0001a65b9a4a67a8b060cd59de614e637501530888 SHA512: 07786ceec98f6d0e40cd3c16437afb50a6ad1b3fccff69e5700d5e701c99375a126d24dbc97fb0ebdf68ccd4055b0ef5c7396d35c0276c9944244af4c4d96ae1 Description: Linux kernel headers for 6.6.15-amd64-vyos-cx on amd64 This package provides kernel header files for 6.6.15-amd64-vyos-cx on amd64 . This is useful for people who need to build external modules Homepage: https://www.kernel.org/ Package: linux-headers-6.6.22-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 52679 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.22-1 Filename: pool/main/l/linux-upstream/linux-headers-6.6.22-amd64-vyos-cx_6.6.22-1_amd64.deb Size: 8960072 MD5sum: 45bcc1b9c08147964ce5668456f15542 SHA1: 84fecec106c3ede73bee5b7d632f0788883da744 SHA256: 7c63bd5379829b6b10fcd0331c2b74a44316bca4c30eda7e84303342f753aa50 SHA512: 99097a82fbd10c0c8e06141377ee4f80e46c8c52b556bceb20b314bda896975236a885f42f4b48a452e729482920d828dd376fac4b349f0e0bc54bbe2715cee0 Description: Linux kernel headers for 6.6.22-amd64-vyos-cx on amd64 This package provides kernel header files for 6.6.22-amd64-vyos-cx on amd64 . This is useful for people who need to build external modules Homepage: https://www.kernel.org/ Package: linux-headers-6.6.23-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 52681 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.23-1 Filename: pool/main/l/linux-upstream/linux-headers-6.6.23-amd64-vyos-cx_6.6.23-1_amd64.deb Size: 8960600 MD5sum: 667c10e15b4f4b6815f506014b9c1974 SHA1: c8c10c3d1e7a4592f344f86d752421be66790bf4 SHA256: ca3fae33d60fecbb93938d2c2eb5d12fcdcbff43feb9d611a398fdc51d1a0ea9 SHA512: 8e5a5c45a3be47da6ae05d3c08636744317d353bb7099d879787ae81a8b7f45d7a8b7086182f01f8508277786d05d16051845be2310e14d0286eac22fa01a169 Description: Linux kernel headers for 6.6.23-amd64-vyos-cx on amd64 This package provides kernel header files for 6.6.23-amd64-vyos-cx on amd64 . This is useful for people who need to build external modules Homepage: https://www.kernel.org/ Package: linux-headers-6.6.25-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 52687 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.25-1 Filename: pool/main/l/linux-upstream/linux-headers-6.6.25-amd64-vyos-cx_6.6.25-1_amd64.deb Size: 8960972 MD5sum: d073c766f06c0aaf77767689e8ecd483 SHA1: 61c4393bbd40076a4c16ab60f696772b7bf26abe SHA256: 033f53a54a933fd9b6bff4ffba6957415f184d04981bd9e54e218cdbdd6b8d19 SHA512: 5fe9bff5e8fbb2cee8edf7420eb6bd0307805b0f2f771790c4103a1e52ab4aeef304cf95937a03afbb41228d5773097603077a5c2a77c7a4284bf8881786bbc4 Description: Linux kernel headers for 6.6.25-amd64-vyos-cx on amd64 This package provides kernel header files for 6.6.25-amd64-vyos-cx on amd64 . This is useful for people who need to build external modules Homepage: https://www.kernel.org/ Package: linux-headers-6.6.27-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 52709 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.27-1 Filename: pool/main/l/linux-upstream/linux-headers-6.6.27-amd64-vyos-cx_6.6.27-1_amd64.deb Size: 8965040 MD5sum: 257be04d49f16d0ead8f9d2216d5ad96 SHA1: 8f82c09982a0d5c677de46301258e4966437c1f3 SHA256: 6a83f6fdd76f4c9a510079d50fa45df46067bb0930dc351e633b9c335e37d47a SHA512: 3f893d152c7465dd29cf9a5d98464eb956eb2a4bff71519bc380527a2f9b14f25aac469b4384ddc78fcf19185f480ad3c80b38d11538febd5996d5ff7d4273ea Description: Linux kernel headers for 6.6.27-amd64-vyos-cx on amd64 This package provides kernel header files for 6.6.27-amd64-vyos-cx on amd64 . This is useful for people who need to build external modules Homepage: https://www.kernel.org/ Package: linux-image-6.6.13-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 149391 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.13-1 Filename: pool/main/l/linux-upstream/linux-image-6.6.13-amd64-vyos-cx_6.6.13-1_amd64.deb Size: 28718044 MD5sum: ed42b599664aa759b6bc24964c620541 SHA1: 2b395d027e12af4b1bd49031b50ba15072922b69 SHA256: 684ef32819f63209c58b566da9a3f2e6817c291fff162567fc28a73438596373 SHA512: 4937574cdd8ae762ffc4ddca461860729c5f15ffe7e087fa09d055a3161dd510719175c0aa888f5726c6148b9c6c71fab040961c4d1e07c9847dffe01197fd00 Description: Linux kernel, version 6.6.13-amd64-vyos-cx This package contains the Linux kernel, modules and corresponding other files, version: 6.6.13-amd64-vyos-cx. Homepage: https://www.kernel.org/ Package: linux-image-6.6.15-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 147946 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.15-1 Filename: pool/main/l/linux-upstream/linux-image-6.6.15-amd64-vyos-cx_6.6.15-1_amd64.deb Size: 28582788 MD5sum: 653e597d54ee3e018c1a3be75a45afe7 SHA1: 4b72e8483589dd4f5655fd1ba9db17b12585b372 SHA256: 0b32f01117c6217f35882c07e595ccc72afa1acd5a253f95afec84654be9bb02 SHA512: 8ffa5fb7717368145166caf9052dc9f07fe8378862f82ccdcec292ad85223e3996bf9c194e4a69ddfb05b4d57a2c502ea7a9548f7a3aef0e6328078ae55e66f6 Description: Linux kernel, version 6.6.15-amd64-vyos-cx This package contains the Linux kernel, modules and corresponding other files, version: 6.6.15-amd64-vyos-cx. Homepage: https://www.kernel.org/ Package: linux-image-6.6.22-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 147934 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.22-1 Filename: pool/main/l/linux-upstream/linux-image-6.6.22-amd64-vyos-cx_6.6.22-1_amd64.deb Size: 28574364 MD5sum: 61c1ec341e16b7bc57b74149a5573cf3 SHA1: a340f2c28f6f4b511e1b40d1e719762f7484d021 SHA256: 7ca7b97281478d29b6ab4b3a385226a47bf8320c6ef2aad34a33dab98432aff7 SHA512: 32e72a89f8717dff7360337265ac388afc2a09d6636cb26737a398a931e3fb0e15083273cd7faafc5cdc9e317139a885e6cd3b506ad02e1e491108f40e80a3f8 Description: Linux kernel, version 6.6.22-amd64-vyos-cx This package contains the Linux kernel, modules and corresponding other files, version: 6.6.22-amd64-vyos-cx. Homepage: https://www.kernel.org/ Package: linux-image-6.6.23-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 147944 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.23-1 Filename: pool/main/l/linux-upstream/linux-image-6.6.23-amd64-vyos-cx_6.6.23-1_amd64.deb Size: 28599188 MD5sum: 75afe6b490cf0d1b8ffd30d145b5970b SHA1: 25bb84755925408f5a1364264245084b7767497a SHA256: c53ee2d97136408242e57aa4dc7c2816687d9fcf66f8324664393f53dcb3e83b SHA512: 83c9f4c010106998c1616a06b6a4a6843c2b56ea77a7663c998ae020eb44f3257dfdff5ddc77354a17f73b03af747c434a5a22f6a17c9e260665a7741ff2055f Description: Linux kernel, version 6.6.23-amd64-vyos-cx This package contains the Linux kernel, modules and corresponding other files, version: 6.6.23-amd64-vyos-cx. Homepage: https://www.kernel.org/ Package: linux-image-6.6.25-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 147955 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.25-1 Filename: pool/main/l/linux-upstream/linux-image-6.6.25-amd64-vyos-cx_6.6.25-1_amd64.deb Size: 28590932 MD5sum: 0a13d7458fdbc54dcdd596453079edb8 SHA1: eb84c274f35f797b5a43f0ce53ed5f624daf08ad SHA256: 847b9eb143941f3a720dc8c0b785bd36a59d5f18882a57573ae1e83ed098542c SHA512: a2936e84fdcec90d8de5b3c9af90b8087f6df8f80462709d97d3688f84375878594db73df1e9c96018dca88be50b7b20bc6e04f18b4747f6184f3806081eeeb2 Description: Linux kernel, version 6.6.25-amd64-vyos-cx This package contains the Linux kernel, modules and corresponding other files, version: 6.6.25-amd64-vyos-cx. Homepage: https://www.kernel.org/ Package: linux-image-6.6.27-amd64-vyos-cx Priority: optional Section: kernel Installed-Size: 147983 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.27-1 Filename: pool/main/l/linux-upstream/linux-image-6.6.27-amd64-vyos-cx_6.6.27-1_amd64.deb Size: 28592216 MD5sum: 716b5f10f5ffa05b8f7ca21b691e2b89 SHA1: b673788b2415800155144e01f438e05339883648 SHA256: 4fd77d35e369e811c1dc7466c04cd834e6eef813e9b71ec896b70c1c638da894 SHA512: eb294e97077e72320bfecd234d1542b7482ebc6749329d0c0939dd27f83c6d4d250f92cc60b2a2fee93cb06421f9f22f6b9b5eb9bdcaf914febcf91a945243ba Description: Linux kernel, version 6.6.27-amd64-vyos-cx This package contains the Linux kernel, modules and corresponding other files, version: 6.6.27-amd64-vyos-cx. Homepage: https://www.kernel.org/ Package: linux-libc-dev Priority: optional Section: devel Installed-Size: 6841 Maintainer: Cloud X OS Support Architecture: amd64 Source: linux-upstream Version: 6.6.27-1 Provides: linux-kernel-headers Filename: pool/main/l/linux-upstream/linux-libc-dev_6.6.27-1_amd64.deb Size: 1318272 MD5sum: 09ecc31bf52e2c295c13b85d347707b7 SHA1: 5f27336314dcb47580512448a6104de67640c23c SHA256: 77e331ddf6bb055a057389f9b11cbfc77498ccaa4014c726e727bab7a689679b SHA512: b8544a5093605922f6b49de40eb964e72c1f40634186b7fd6f839057b145705fe26e9c0c3e85667141143c9f06894c0acfd4b980fe9fab80ea17001470d1cf18 Description: Linux support headers for userspace development This package provides userspaces headers from the Linux kernel. These headers are used by the installed headers for GNU glibc and other system libraries. Homepage: https://www.kernel.org/ Multi-Arch: same Package: ndppd Priority: optional Section: net Installed-Size: 169 Maintainer: Cloud X OS Support Architecture: amd64 Version: 0.2.5-6+cx1 Depends: lsb-base (>= 3.0-6), libc6 (>= 2.34), libgcc-s1 (>= 3.0), libstdc++6 (>= 5.2) Pre-Depends: init-system-helpers (>= 1.54~) Filename: pool/main/n/ndppd/ndppd_0.2.5-6+cx1_amd64.deb Size: 58828 MD5sum: ec84dec9c748d4c00e096cf1bf3f0228 SHA1: ea459c4e389a1141a70b49599bb4d3222c61cdc3 SHA256: 17eb361b96370d427516e3e6c975429cfc7424e1892c72d5bb6b690ed043eb76 SHA512: eef805a783b184b7d11e2727ce6a6a67eb3d94528ea823d579a97eeb82ebdddb61b140c5fe40fbb47975c69cad23674df74761d7c0922803e4716db8f8bb8c24 Description: daemon that proxies IPv6 NDP messages ndppd is a daemon that proxies certain IPv6 NDP messages between two or more interfaces. It currently supports proxying Neighbor Solicitation Messages and Neighbor Advertisement messages in order to allow IPv6 routing without relying on Linux "proxy_ndp". . The daemon is partially compliant with (experimental) RFC4389. Homepage: https://github.com/DanielAdolfsson/ndppd/ Multi-Arch: foreign Package: ndppd-dbgsym Priority: optional Section: debug Installed-Size: 657 Maintainer: Cloud X OS Support Architecture: amd64 Source: ndppd Version: 0.2.5-6+cx1 Depends: ndppd (= 0.2.5-6+cx1) Filename: pool/main/n/ndppd/ndppd-dbgsym_0.2.5-6+cx1_amd64.deb Size: 636924 MD5sum: affd1ef3116efe4e8ff0cdff8ae36508 SHA1: a65338e5901fe8aab8ba3b8ffb10e76cdade31b1 SHA256: 427c93a1b1c6014cc343bb25589e8eaf09ef61d32364034c5eeb6b36421535df SHA512: 7a3326a361a84b394f7efc25da026bd09a4ca22e6a20fe9103be0dcbc4d0c869ae1a0f84d937ea6f55704eac5c7aea53d36a9f2be59c95fce3e4bba708512991 Description: debug symbols for ndppd Auto-Built-Package: debug-symbols Build-Ids: 2e782354f971408688dfb46362be4d95c7503d92 Package: nftables Priority: important Section: net Installed-Size: 79 Maintainer: Cloud X OS Support Architecture: amd64 Version: 1.0.9-1+cx1 Depends: libnftables1 (= 1.0.9-1+cx1), libc6 (>= 2.34), libedit2 (>= 3.1-20130611-0) Recommends: netbase Suggests: firewalld Filename: pool/main/n/nftables/nftables_1.0.9-1+cx1_amd64.deb Size: 19732 MD5sum: d1d755bcc2fdcb2397da570dd71e0874 SHA1: bc92cd8964ae73c0f7afa66109e9fa499fd930c2 SHA256: c632cb496d76c638d266039ee1bf8ac01f8b8070cbfdb44df099f2e576030363 SHA512: 559406569909848cc5149b82428aa3f294999f999937ad16491e16657f1e056e38ff5d8b617b6fb03b1111638f87947996ef8f7616833819cbe8a5a9810dc090 Description: Program to control packet filtering rules by Netfilter project This software provides an in-kernel packet classification framework that is based on a network-specific Virtual Machine (VM) and the nft userspace command line tool. The nftables framework reuses the existing Netfilter subsystems such as the existing hook infrastructure, the connection tracking system, NAT, userspace queueing and logging subsystem. . nftables replaces the old popular iptables, ip6tables, arptables and ebtables. . Netfilter software and nftables in particular are used in applications such as Internet connection sharing, firewalls, IP accounting, transparent proxying, advanced routing and traffic control. . A Linux kernel >= 3.13 is required. However, >= 4.14 is recommended. Homepage: https://www.netfilter.org/ Package: nftables-dbgsym Priority: optional Section: debug Installed-Size: 29 Maintainer: Cloud X OS Support Architecture: amd64 Source: nftables Version: 1.0.9-1+cx1 Depends: nftables (= 1.0.9-1+cx1) Filename: pool/main/n/nftables/nftables-dbgsym_1.0.9-1+cx1_amd64.deb Size: 14424 MD5sum: d581a315392bcabb098297e4b46d1799 SHA1: 431cfd2b127b587c8cfcf63e666267ca2628448d SHA256: bedc80aed1df874eaef0a26fca94150048c240b968108a42a08385ac1c77a374 SHA512: 0d06ddd66924a09bc1e0f8a82d5fe310b80d56cb9376ffb2114973cacb49d5151ce196f9eee0c389bd49ad3477c55dcc6f6de3b7a6a7dc5c5c97bfd9a7790cf0 Description: debug symbols for nftables Auto-Built-Package: debug-symbols Build-Ids: dbf1171e32b73c6141a9973417e6ce91d8eb5ea9 Package: ocaml-dune Priority: optional Section: ocaml Installed-Size: 16418 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Version: 3.11.1-1+cx1 Replaces: dune (<< 1.6.2-3), jbuilder (<< 1.0~beta20-1), whitedune (<< 0.30.10-2.2) Provides: jbuilder Depends: libc6 (>= 2.35) Breaks: dune (<< 1.6.2-3), jbuilder (<< 1.0~beta20-1), libsedlex-ocaml-dev (<< 2.1-4), whitedune (<< 0.30.10-2.2) Filename: pool/main/o/ocaml-dune/ocaml-dune_3.11.1-1+cx1_amd64.deb Size: 4124208 MD5sum: 5aa5b13f6ce21ca9c9caaa7440fb3a2d SHA1: 7042ae8ea1b4acd72b16e6174e7e1acebdbdeb50 SHA256: 58bc386b043f1875cd8b7c44e25e6e56a3d69606fd168cb8f6b1454ad5288719 SHA512: 5102417af7fe8e9dd4db2b69facd07b9446425f89eb3ee23e107f21ebc762660c055a4ca8469e978c3fd6874b47c92baa7baec470d944f4d6b9d52b4fee36f85 Description: composable build system for OCaml projects Dune is a build system designed for OCaml/Reason projects only. It focuses on providing the user with a consistent experience and takes care of most of the low-level details of OCaml compilation. All you have to do is provide a description of your project and Dune will do the rest. . This package contains the dune executable. Homepage: https://github.com/ocaml/dune Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-dune Original-Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-dune.git Package: ocaml-dune-dbgsym Priority: optional Section: debug Installed-Size: 5213 Maintainer: Cloud X OS Support Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml-dune Version: 3.11.1-1+cx1 Depends: ocaml-dune (= 3.11.1-1+cx1) Filename: pool/main/o/ocaml-dune/ocaml-dune-dbgsym_3.11.1-1+cx1_amd64.deb Size: 1714192 MD5sum: 5ea59879a2e09581673614ee5b258424 SHA1: f19b45ded059bf0cef071439a009506034fe8914 SHA256: b52339ff74088d58f2dca2f69c16130838d7441e6eea255cb98d79b6f104f2df SHA512: 163877899d4aa00be6a6f1bd03096847266a4b1d1fd92f6f545fbbc9ef9b1cacc294b1c7d4b27ff88bb6d68e0dd90f7d9bcc235340a1410b7c3dc85cbeb664e1 Description: debug symbols for ocaml-dune Auto-Built-Package: debug-symbols Build-Ids: f3741dbe98319f73394100d94540d9c23ebe1685 Original-Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-dune Original-Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-dune.git Package: opennhrp Priority: optional Section: net Installed-Size: 113 Maintainer: Cloud X OS Support Architecture: amd64 Version: 0.14-20-g613277f+cx1 Filename: pool/main/o/opennhrp/opennhrp_0.14-20-g613277f+cx1_amd64.deb Size: 49794 MD5sum: 26b3442102e9598b397a1bd030ef9181 SHA1: f648677d74e8219845cd1be128f5fa2bb1ef380f SHA256: 88d269d5f791a8e3709dc66b8d234640e41741a38177fca53fcc9047b2fbdb74 SHA512: 14aae8595b880dfd805b517f0fe575cf1a23f813f293bc49a1a68b56afcaf7d13034c316e49df14d58122150237b2d7724d8cd1207d3f94a2f1f2ff524006cbe Description: NBMA Next Hop Resolution Protocol daemon Homepage: https://sourceforge.net/projects/opennhrp/ License: MIT Vendor: none Package: openvpn-dco Priority: optional Section: net Installed-Size: 174 Maintainer: Cloud X OS Support Architecture: amd64 Version: 0.2.20231117+cx1 Depends: linux-image-6.6.27-amd64-vyos-cx Filename: pool/main/o/openvpn-dco/openvpn-dco_0.2.20231117+cx1_amd64.deb Size: 45720 MD5sum: c4541638ce663820e53df4c605ee04e4 SHA1: 04ac8e82d36c441e47737672e872876b262e600c SHA256: 0eaa0fd52479749b695e2818517f06383e946a189aa510474d226ccc27b7287b SHA512: cfe6960518e0e2e60d0325b4be13a30bcd4470d071bbfff780126307793159940687f9fb1136c8f17186264f09402c6d9b9b468f03f19bd5057c86211f9e801b Description: OpenVPN Data Channel Offload Homepage: https://github.com/OpenVPN/ovpn-dco License: GPL2 Vendor: none Package: openvpn-otp Priority: optional Section: net Installed-Size: 60 Maintainer: Cloud X OS Support Architecture: amd64 Version: 1.0-4-g47f8ccf+cx1 Depends: openvpn Filename: pool/main/o/openvpn-otp/openvpn-otp_1.0-4-g47f8ccf+cx1_amd64.deb Size: 25906 MD5sum: c2b0a0e03a3b63edda83812ae1acd94c SHA1: cc219cee42a337095949179ab3d786cd1dbe5e4c SHA256: 187aa3c360a1aaf1f0f3b55c5178c72dc92657a3eb63c729a135d336a25bc3dc SHA512: 2a918463730defc6a37f33b62973cca61037d406eb4a9f079c5415e45bb6951d36daadbc0f81e5f6d673fe0b45967382744600b1c726c2acec39f4ea3be98b82 Description: OpenVPN OTP Authentication support. Homepage: https://github.com/evgeny-gridasov/openvpn-otp License: unknown Vendor: none Package: owamp-client Priority: optional Section: net Installed-Size: 680 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: libc6 (>= 2.34), libcap2 (>= 1:2.10), libcap2-bin Filename: pool/main/o/owamp/owamp-client_4.4.6-1+cx1_amd64.deb Size: 213580 MD5sum: 942d8ee9c5a3be0dee541ada22c91dec SHA1: f79b22d3c17a5b0c9d2a43b9072519ae9dbee6e2 SHA256: 7ee72ea5f9cc086cd01fb13c7265a2df2798be1c57b314bf6c1e52aca0577e81 SHA512: c135b0429d832fd693fd4f37627cdcdc932e7073eb40a46cb1533e2d99d7747f9577b76527ea5e42e78ecc716eb84103ca28b125e56bb27ffc6a65fc4916c543 Description: OWAMP command line client utilities OWAMP is a client/server package that allows one to measure the latency between hosts. Unlike ping, which can only measure the bidirectional delay, OWAMP enables you to measure the unidirectional delay between two hosts. It is an implementation of the One-Way Active Measurement Protocol as defined by RFC4656. . This package contains command line client utilities for performing measurements with an owamp server. Homepage: http://software.internet2.edu/owamp/ Package: owamp-client-dbgsym Priority: optional Section: debug Installed-Size: 248 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: owamp-client (= 4.4.6-1+cx1) Filename: pool/main/o/owamp/owamp-client-dbgsym_4.4.6-1+cx1_amd64.deb Size: 193332 MD5sum: 720a69cb7cfa751767b9ea0b48f5c552 SHA1: a89d8fd26b472ce8d261d1cfbc2e121a53a910bb SHA256: a5ad3d46037d1349197e3dc7a68a077b82d5770410da3bda125b86d1b321e3a1 SHA512: e83547c7a477e6edce28392d45ac5746df14159c24adfbc1a81ba2bbef10bbc8640dd9bd290b98ad544f3cac3edd924d73de73825bfd700ed5e41c69b4179b61 Description: debug symbols for owamp-client Auto-Built-Package: debug-symbols Build-Ids: 1595e1b5b9d144caba195d015b4d02e2f8274aee 23b9cc85492820b6445dd620a23ad6a405a309a7 Package: owamp-server Priority: optional Section: net Installed-Size: 417 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: libc6 (>= 2.34), libcap2 (>= 1:2.10), adduser, lsb-base, ntp | time-daemon Filename: pool/main/o/owamp/owamp-server_4.4.6-1+cx1_amd64.deb Size: 184092 MD5sum: 904877b9660a6d1edfc88bdac6f68f53 SHA1: b134641cd02234b35d76d4ab9a26d3aa590ad3fe SHA256: d6f9ff334e0fbd1c5764c16421ba7eb48e46a23f3b0977d6e7d6f986adefaf4a SHA512: 45e9743a91bb8c3ef12ce06bd57e044c3b16b0e6f05d1602a88ccb77e7b90a733ae760d8a59e99341409ca0db9be449f8fd13802705351ba183aa54f6716f05a Description: OWAMP daemon OWAMP is a client/server package that allows one to measure the latency between hosts. Unlike ping, which can only measure the bidirectional delay, OWAMP enables you to measure the unidirectional delay between two hosts. It is an implementation of the One-Way Active Measurement Protocol as defined by RFC4656. . This package contains the owamp server. Homepage: http://software.internet2.edu/owamp/ Package: owamp-server-dbgsym Priority: optional Section: debug Installed-Size: 135 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: owamp-server (= 4.4.6-1+cx1) Filename: pool/main/o/owamp/owamp-server-dbgsym_4.4.6-1+cx1_amd64.deb Size: 105492 MD5sum: 689f7364b306fb62b7da8ca628f2263f SHA1: bb2870fa5a94eb1795a9d6f1f034e08049c5b62a SHA256: 9b7dffc4e4fdbc4f367ae5cb8df59399df88bdfde39fd5d4c9d6c6841ceaa165 SHA512: 093bb057749cb2c9b87a1ed951f2bae271d6a148f1f0b9e681964c3a1f7b372fbb6b85ab69087074f933befe557a1515f6baf791813dbee1c466af821ffa331a Description: debug symbols for owamp-server Auto-Built-Package: debug-symbols Build-Ids: dc62acd07db41dd5acdc460efd89c945c4ede05f Package: pmacct Priority: optional Section: net Installed-Size: 13849 Maintainer: Cloud X OS Support Architecture: amd64 Version: 1.7.7-1+cx1 Depends: libc6 (>= 2.34), libjansson4 (>= 2.14), libmariadb3 (>= 3.0.0), libmaxminddb0 (>= 1.0.2), libnetfilter-log1 (>= 0.0.15), libpcap0.8 (>= 1.0.0), libpq5 (>= 9.1~), librabbitmq4 (>= 0.6.0), librdkafka1 (>= 0.9.1), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 5.2), libzmq5 (>= 4.0.1+dfsg), net-tools, psmisc, lsb-base Filename: pool/main/p/pmacct/pmacct_1.7.7-1+cx1_amd64.deb Size: 1621604 MD5sum: 8bbd59c9903f3315fdf3884f4635c47e SHA1: b253b057d8a455d386c3f0279f48bfd502d1bedb SHA256: 8637615ab929e7cb9c42e57c8107896da61b72295260bacfc490220b2afe4ac2 SHA512: 037230d2edb0e57fed423dfa76951cb8d312accc4d475e91b657c413aabdace4092f5a436a7b2d5babd46bbe6eb3b3a959a96ef2b7269a84f126a50e9cb219c0 Description: promiscuous mode traffic accountant pmacct is a tool designed to gather traffic information (bytes and number of packets) by listening on a promiscuous interface or for Netflow data, which may facilitate billing, bandwidth management, traffic analysis, or creating usage graphs. . Data can be stored in memory and queried, displayed directly, or written to a database; storage methods are quite flexible and may aggregate totals or keep them separate. Homepage: http://www.pmacct.net/ Package: pmacct-dbgsym Priority: optional Section: debug Installed-Size: 3748 Maintainer: Cloud X OS Support Architecture: amd64 Source: pmacct Version: 1.7.7-1+cx1 Depends: pmacct (= 1.7.7-1+cx1) Filename: pool/main/p/pmacct/pmacct-dbgsym_1.7.7-1+cx1_amd64.deb Size: 1884696 MD5sum: 3baea42331ead74efee2a764881a9145 SHA1: c5689da23cc2e5d2e42f4d8bf6dcb34a7b399329 SHA256: 95c1766e5949c9f154a6be206d6333e313bb4be016dc56b5d60ddd45c067adb4 SHA512: 80a886e7283f158828662e7ec74ad883771a39a1e1aee2e1f87e16b7b7420404aa438f2485195a18b6f92a11214617084a356b1b23341c4e1e87baac1b9a9947 Description: debug symbols for pmacct Auto-Built-Package: debug-symbols Build-Ids: 1bd0eecc480ced66162e28f085d312e4c8a8c012 1d16be29fe89b66904673ef44f88b214b2896a60 3a82f61d37cf6a585f660c3b88f71f7c269b24a9 4c6b645bb71374cbafecef569f2c9001da034181 5212dfaa6f0b6b1e71f02d97d79f795b0291ed1d 6988ab5ad5e3e5e94cb5d44ddaf314502c745808 8ee38327bc48ffd916e04c6feef5c095f28dfbb3 a567e1f686feb50db5ea76469bc1f61a5da28c0f bb945bb33b11153a3671dc232071faba223f2a1b Package: python3-j2lint Priority: optional Section: python Installed-Size: 93 Maintainer: Andrei Kornilov Architecture: all Source: j2lint Version: 0.1-0+cx1 Depends: python3-jinja2, python3:any Filename: pool/main/j/j2lint/python3-j2lint_0.1-0+cx1_all.deb Size: 21300 MD5sum: 8c4523d1fa13b1bdf052e66154af2a56 SHA1: b96a0c2775f48432b6fa0df7609134a6a7e55958 SHA256: bfcd61a55fae0036a0201727762087adfe592645b275817b9df1e16ca1013f42 SHA512: c8eadbfb92015996fc43e05d1cfac741ee19c5ae36dc091bcfec0296da58bcc5c280028905869d44388b8fb6e668e34e5adafb1195d4ebbaae8b0b65339fae17 Description: Command-line utility that validates jinja2 syntax according to Arista's AVD styl [![GitHub license](https://badgen.net/github/license/aristanetworks/j2lint)](https://github.com/aristanetworks/j2lint/blob/devel/LICENSE) [![PyPI version fury.io](https://badge.fury.io/py/j2lint.svg)](https://pypi.python.org/pypi/j2lint/) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/j2lint.svg)](https://pypi.python.org/pypi/j2lint/) [![PyPI status](https://img.shields.io/pypi/status/j2lint.svg)](https://pypi.python.org/pypi/j2lint/) [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/aristanetworks/j2lint/graphs/commit-activity) . # Jinja2-Linter . AVD Ecosystem - Jinja2 Linter . ## Project Goals . Build a Jinja2 linter that will provide the following capabilities: . - Validate syntax according to [AVD style guide](https://avd.sh/en/stable/docs/contribution/style-guide.html). - Capability to run as part of a CI pipeline to enforce j2lint rules. - Develop an extension that works with VSCode and potentially other IDEs i.e PyCharm. . ## Syntax and code style issues . | Code | Short Description | Description | |------|-------------------|-------------| | S0 | `jinja-syntax-error` | Jinja2 syntax should be correct | | S1 | `single-space-decorator` | A single space shall be added between Jinja2 curly brackets and a variable's name | | S2 | `operator-enclosed-by-spaces` | When variables are used in combination with an operator, the operator shall be enclosed by space | | S3 | `jinja-statements-indentation` | Nested jinja code block shall follow next rules:
- All J2 statements must be enclosed by 1 space
- All J2 statements must be indented by 4 more spaces within jinja delimiter
- To close a control, end tag must have same indentation level | | S4 | `jinja-statements-single-space` | Jinja statement should have a single space before and after | | S5 | `jinja-statements-no-tabs` | Indentation are 4 spaces and NOT tabulation | | S6 | `jinja-statements-delimiter` | Jinja statements should not have {%- or {%+ or -%} as delimiters | | S7 | `single-statement-per-line` | Jinja statements should be on separate lines | | V1 | `jinja-variable-lower-case` | All variables shall use lower case | | V2 | `jinja-variable-format` | If variable is multi-words, underscore _ shall be used as a separator | . ## Getting Started . ### Requirements . Python version 3.8+ . ### Install with pip . To get started, you can use Python pip to install j2lint: . **Install the latest stable version:** . ```bash pip3 install j2lint ``` . **Install the latest development version:** . ```bash pip3 install git+https://github.com/aristanetworks/j2lint.git ``` . ### Install with Git approach . 1. Create a virtual environment and activate it . ```bash python3 -m venv myenv source myenv/bin/activate ``` . 2. Install pip, jinja2 and jinja2-linter . ```bash sudo apt-get install python3-pip pip3 install jinja2 git clone https://github.com/aristanetworks/j2lint cd j2lint python setup.py install ``` . ## Running the linter . ```bash j2lint ``` . ### Running the linter on a specific file . ```bash j2lint /template.j2 ``` . ### Listing linting rules . ```bash j2lint --list ``` . ### Running the linter with verbose linter error output . ```bash j2lint --verbose ``` . ### Running the linter with logs enabled. Logs saved in jinja2-linter.log in the current directory . ```bash j2lint --log ``` . To enable debug logs, use both options: . ```bash j2lint --log --debug ``` . ### Running the linter with JSON format for linter error output . ```bash j2lint --json ``` . ### Ignoring rules . 1. The --ignore option can have one or more of these values: syntax-error, single-space-decorator, filter-enclosed-by-spaces, jinja-statement-single-space, jinja-statements-indentation, no-tabs, single-statement-per-line, jinja-delimiter, jinja-variable-lower-case, jinja-variable-format. . 2. If multiple rules are to be ignored, use the --ignore option along with rule descriptions separated by space. . ```bash j2lint --ignore ``` . 3. If one or more linting rules are to be ignored only for a specific jinja template file, add a Jinja comment at the top of the file. The rule can be disabled using the short description of the rule or the id of the rule. . ```jinja2 {# j2lint: disable=S6} . # OR {# j2lint: disable=jinja-delimiter #} ``` . 4. Disabling multiple rules . ```jinja2 {# j2lint: disable=jinja-delimiter j2lint: disable=S1 #} ``` . ### Adding custom rules . 1. Create a new rules directory under j2lint folder. 2. Add custom rule classes which are similar to classes in j2lint/rules directory: The file name of rules should be in snake_case and the class name should be the PascalCase version of the file name. For example: - File name: `jinja_operator_has_spaces_rule.py` - Class name: `JinjaOperatorHasSpacesRule` . 3. Run the jinja2 linter using --rules-dir option . ```bash j2lint --rules_dir ``` . > **Note** > This runs the custom linting rules in addition to the default linting rules. . ### Running jinja2 linter help command . ```bash j2lint --help ``` . ### Running jinja2 linter on STDIN template. This option can be used with VS Code. . ```bash j2lint --stdin ``` . ### Using j2lint as a pre-commit-hook . 1. Add j2lint pre-commit hook inside your repository in .pre-commit-config.yaml. . ```bash - repo: https://github.com/aristanetworks/j2lint.git rev: hooks: - id: j2lint ``` . 2. Run pre-commit -> `pre-commit run --all-files` . ## Acknowledgments . This project is based on [salt-lint](https://github.com/warpnet/salt-lint) and [jinjalint](https://github.com/motet-a/jinjalint) Package: python3-nftables Priority: optional Section: python Installed-Size: 66 Maintainer: Cloud X OS Support Architecture: amd64 Source: nftables Version: 1.0.9-1+cx1 Depends: libnftables1 (= 1.0.9-1+cx1), python3-jsonschema, python3:any Filename: pool/main/n/nftables/python3-nftables_1.0.9-1+cx1_amd64.deb Size: 16540 MD5sum: e3affa2af02aaa51e8680c53023bd0c3 SHA1: 61d20908000a78ad3ec27b8881bde796e265af79 SHA256: 31aca24efe2025a0286a5328d4cd660e2d19f7c990d45b875628b5ee3357a814 SHA512: c60264b06143af444a8e7a7a4182d3b67e3ee67b19131697beae51826e469d9cf35a092093b3efeaab04dca684481ee1c6692160fd83b1d889e94d5315b82c7b Description: nftables/libnftables python3 module The libnftables library provides high level semantics to interact with the nftables framework by the Netfilter project. . nftables replaces the old popular iptables, ip6tables, arptables and ebtables. . Netfilter software and nftables in particular are used in applications such as Internet connection sharing, firewalls, IP accounting, transparent proxying, advanced routing and traffic control. . A Linux kernel >= 3.13 is required. However, >= 4.14 is recommended. . This package contains the libnftables python3 bindings. Homepage: https://www.netfilter.org/ Package: python3-pyhumps Priority: optional Section: python Installed-Size: 32 Maintainer: Andrei Kornilov Architecture: all Source: pyhumps Version: 3.8.0-0+cx1 Depends: python3:any Filename: pool/main/p/pyhumps/python3-pyhumps_3.8.0-0+cx1_all.deb Size: 7548 MD5sum: 5e3689052da1774e747ac4b425333de7 SHA1: 4eea76571f2bcfb1a6b4f5673581dc302eecca46 SHA256: 2adcc11368d511bea5260d42d58b551ac66d70b59c158e1f588fef4e48071fa1 SHA512: 9a9db20e0e3aa535e96c25146ee938b32687f96970ba661dc3347f523b1905863614c5af7a22fb9b5882ac50b4e057cdc57472cc7673fbd6011fad603a32cb53 Description: 🐫 Convert strings (and dictionary keys) between snake case, camel case and pasca

Humps logo

.

. Convert strings (and dictionary keys) between snake case, camel case and pascal case in Python. Inspired by [Humps](https://github.com/domchristie/humps) for Node. . ## Jan 11, 2021: An open call for contributors: . Please email me at nficano@gmail.com. . ## Installation . To install humps, simply use pipenv (or pip, of course): . ```bash $ pipenv install pyhumps ``` . ## Usage . ### Converting strings . ```python import humps . humps.camelize("jack_in_the_box") # jackInTheBox humps.decamelize("rubyTuesdays") # ruby_tuesdays humps.pascalize("red_robin") # RedRobin humps.kebabize("white_castle") # white-castle ``` . ### Converting dictionary keys . ```python import humps . array = [{"attrOne": "foo"}, {"attrOne": "bar"}] humps.decamelize(array) # [{"attr_one": "foo"}, {"attr_one": "bar"}] . array = [{"attr_one": "foo"}, {"attr_one": "bar"}] humps.camelize(array) # [{"attrOne": "foo"}, {"attrOne": "bar"}] . array = [{'attr_one': 'foo'}, {'attr_one': 'bar'}] humps.kebabize(array) # [{'attr-one': 'foo'}, {'attr-one': 'bar'}] . array = [{"attr_one": "foo"}, {"attr_one": "bar"}] humps.pascalize(array) # [{"AttrOne": "foo"}, {"AttrOne": "bar"}] ``` . ### Checking character casing . ```python import humps . humps.is_camelcase("illWearYourGranddadsClothes") # True humps.is_pascalcase("ILookIncredible") # True humps.is_snakecase("im_in_this_big_ass_coat") # True humps.is_kebabcase('from-that-thrift-shop') # True humps.is_camelcase("down_the_road") # False . humps.is_snakecase("imGonnaPopSomeTags") # False humps.is_kebabcase('only_got_twenty_dollars_in_my_pocket') # False . . # what about abbrevations, acronyms, and initialisms? No problem! humps.decamelize("APIResponse") # api_response ``` .
. ## Cookbook . #### Pythonic Boto3 API Wrapper . ```python # aws.py import humps import boto3 . def api(service, decamelize=True, *args, **kwargs): service, func = service.split(":") client = boto3.client(service) kwargs = humps.pascalize(kwargs) response = getattr(client, func)(*args, **kwargs) return (depascalize(response) if decamelize else response) . # usage api("s3:download_file", bucket="bucket", key="hello.png", filename="hello.png") ``` Homepage: https://github.com/nficano/humps Package: python3-vici Priority: optional Section: python Installed-Size: 50 Maintainer: Andrei Kornilov Architecture: all Source: vici Version: 5.9.11.post1-1+cx1 Depends: python3:any Filename: pool/main/v/vici/python3-vici_5.9.11.post1-1+cx1_all.deb Size: 9216 MD5sum: d2cf65d3d4393382d880b7c1e506bd4a SHA1: faf7dbb56a07ff84f3c0feb917e9aa898583acb3 SHA256: 7ea7bffdb1f9283d53418a0db60cf33f9e09f996a4cb17d91a82760264024f1b SHA512: 2598efd9de6962991668f2d65a9081228ee8b88468c8c664bba6969105102a5a05c613c6060fabc92d1186dcdcd1d5dc9ad3836280c87f0105ffb90f8059f7d6 Description: Native Python interface for strongSwan's VICI protocol About ----- . The strongSwan VICI protocol allows external applications to monitor, configure and control the IKE daemon charon. This Python package provides a native client side implementation of the VICI protocol, well suited to script automated tasks in a reliable way. . . Example Usage ------------- . .. code-block:: python . >>> import vici >>> s = vici.Session() >>> s.version() OrderedDict([('daemon', b'charon'), ('version', b'5.4.0'), ('sysname', b'Linux'), ('release', b'3.13.0-27-generic'), ('machine', b'x86_64')]) >>> s.load_pool({"p1": {"addrs": "10.0.0.0/24"}}) OrderedDict([('success', b'yes')]) >>> s.get_pools() OrderedDict([('p1', OrderedDict([('base', b'10.0.0.0'), ('size', b'254'), ('online', b'0'), ('offline', b'0')]))]) Homepage: https://docs.strongswan.org/docs/5.9/plugins/vici.html Package: radius-shell Priority: extra Section: libs Installed-Size: 36 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-radius-auth Version: 1.5.0-cl5.0.0u7+cx1 Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.3.4), libcap2 (>= 1:2.10), libcap2-bin, libnss-mapuser Filename: pool/main/libp/libpam-radius-auth/radius-shell_1.5.0-cl5.0.0u7+cx1_amd64.deb Size: 11356 MD5sum: 52ca61e73f8d3ff689e099c4c3f94125 SHA1: eb51afd62d37c14ce1ae08336a75db9806c31caa SHA256: bfae0c44ae4890940da065566ee075132934ae266e1ec50db32fc6f579792c55 SHA512: 7144ea5a3f40012331cf3e28b194ea8af0880925da36dae5f219c9a11341e47d68eabc9eacd0d3c3636bab137c3abb8e6776717352732eed9b286d5080ffaa94 Description: Shell front-end used for radius users. This provides a uid fixup program. Due to the limitations of the RADIUS protocol, we can't tell whether a user is privileged until after authentication. This package provides a shell front-end that sets the uid to the auid, if set and > 1000, and not already matching. Vcs-Hash: 529596140af97913df97f5ea2d67a921463973f5 Package: radius-shell-dbgsym Priority: optional Section: debug Installed-Size: 56 Maintainer: Cloud X OS Support Original-Maintainer: dev-support Architecture: amd64 Source: libpam-radius-auth Version: 1.5.0-cl5.0.0u7+cx1 Depends: radius-shell (= 1.5.0-cl5.0.0u7+cx1) Filename: pool/main/libp/libpam-radius-auth/radius-shell-dbgsym_1.5.0-cl5.0.0u7+cx1_amd64.deb Size: 43368 MD5sum: 17ec174022289008c63c89591d6c325d SHA1: 13a3172b19eaae5d51672321662f95d7e1b861d0 SHA256: e8ed5e51dd0132b7223ae32ea1043fcd6a2711ea7a2b28e3180ceedbecee4abb SHA512: 754efecc6905381158a59848a941bfe0b59e56a51d7fa18ec0d115761ce10d7edc2f93bef71b3063624589b9e83b99bde65a68b263b405300164f333647d2383 Description: debug symbols for radius-shell Auto-Built-Package: debug-symbols Build-Ids: cc03e201b46557f55b61e059cd94fd864c83a955 Vcs-Hash: 529596140af97913df97f5ea2d67a921463973f5 Package: radvd Priority: optional Section: net Installed-Size: 105 Maintainer: Cloud X OS Support Architecture: amd64 Version: 2.20-rc1-23-gf2de476+cx1 Filename: pool/main/r/radvd/radvd_2.20-rc1-23-gf2de476+cx1_amd64.deb Size: 50148 MD5sum: a33f52911ec8869deb6a932242237580 SHA1: 02c46b92b077ca78abfa2e34120db89e70c2ffbb SHA256: f1e457a522cad8eebf63a64f5bbd128a50a66e6ab466d5c9b0f49f6c1d9a24e7 SHA512: c71ba1a62bb7d8c536688e5e0a3e9725b3eaf9e85db1792c07804b47a27f1beb333de01e8f9f2623a8c0c4a2de915ef9c9c21c34092a1b598ca26c6ca9f56a06 Description: RADVD router advertisement daemon Homepage: https://github.com/radvd-project/radvd License: RADVD Vendor: none Package: salt-api Priority: optional Section: admin Installed-Size: 54 Maintainer: Cloud X OS Support Original-Maintainer: Debian Salt Team Architecture: all Source: salt Version: 3005.4+ds-1+cx1 Depends: salt-master, python3:any Recommends: python3-cherrypy3 Filename: pool/main/s/salt/salt-api_3005.4+ds-1+cx1_all.deb Size: 13508 MD5sum: 5c09363900873bc01871842ad187ba32 SHA1: e84a7412dac0a883b5f6f02fbf1c77d8c59d8f7d SHA256: e5e1078ee3392641bc5f7216f8c6830895c3ef17c1c7b999e128d5f160b34bdc SHA512: e53da408d1c04347e250ae7ecdeda4188e4e3aa5b01d59be7765e5b8d2fae5b74ca6fe08fc5dede7173748580d1a306280203be8a6053311c860f9c572401717 Description: Generic, modular network access system a modular interface on top of Salt that can provide a variety of entry points into a running Salt system. It can start and manage multiple interfaces allowing a REST API to coexist with XMLRPC or even a Websocket API. . The Salt API system is used to expose the fundamental aspects of Salt control to external sources. salt-api acts as the bridge between Salt itself and REST, Websockets, etc. Homepage: https://saltproject.io/ Original-Vcs-Browser: https://github.com/saltstack/salt.git Original-Vcs-Git: git://github.com/saltstack/salt.git Package: salt-cloud Priority: optional Section: admin Installed-Size: 50 Maintainer: Cloud X OS Support Original-Maintainer: Debian Salt Team Architecture: all Source: salt Version: 3005.4+ds-1+cx1 Depends: python3-libcloud, salt-common (= 3005.4+ds-1+cx1), python3:any Recommends: python3-netaddr Suggests: python3-botocore Filename: pool/main/s/salt/salt-cloud_3005.4+ds-1+cx1_all.deb Size: 14756 MD5sum: 860299f91c0b662ff291c4bc602bbbaf SHA1: c646d41ecd11e10494921909232833876e8d5f88 SHA256: 32da14507751e0536ee2d94a4d0956474b8d400e1492ad1c05e49d5ffbf98b35 SHA512: 082fafbd54dca0fb65c512801efde8673fa21db9d2ee388e4222f35e05d15c22d15ad69c8396d34093c16064dd0adca75a40d94a122ca1f079afb7ce7bd2bdbd Description: public cloud VM management system provision virtual machines on various public clouds via a cleanly controlled profile and mapping system. Homepage: https://saltproject.io/ Original-Vcs-Browser: https://github.com/saltstack/salt.git Original-Vcs-Git: git://github.com/saltstack/salt.git Package: salt-common Priority: optional Section: admin Installed-Size: 31016 Maintainer: Cloud X OS Support Original-Maintainer: Debian Salt Team Architecture: all Source: salt Version: 3005.4+ds-1+cx1 Depends: python3-apt, python3-dateutil, python3-jinja2, python3-msgpack (>= 0.4), python3-pkg-resources, python3-requests, python3-yaml, python3-systemd, python3-psutil, python3-distro, python3-pycryptodome, python3-zmq (>= 17.0.0), python3-jmespath, python3-markupsafe, python3:any Recommends: lsb-release, python3-contextvars, python3-croniter Suggests: python3-pycurl, python3-twisted Breaks: python3-mako (<< 0.7.0) Filename: pool/main/s/salt/salt-common_3005.4+ds-1+cx1_all.deb Size: 7250996 MD5sum: 4a18ec8bd3d876540eb4f7704b532a60 SHA1: 3cbec37327efaf008ab31b41d15292867014dece SHA256: 125842d90ca0bec6c7b61c8ebe320f8266c63df86f17b3cb76df52ac61e414a1 SHA512: 21c70e2a5cada45e5489319f3fa19fa59abd37c6485f09ff82ed62241d5d74d3c495065ee865de581f3e9c8051b26500f67bc3a647b21a134b0402be615f3802 Description: shared libraries that salt requires for all packages salt is a powerful remote execution manager that can be used to administer servers in a fast and efficient way. . It allows commands to be executed across large groups of servers. This means systems can be easily managed, but data can also be easily gathered. Quick introspection into running systems becomes a reality. . Remote execution is usually used to set up a certain state on a remote system. Salt addresses this problem as well, the salt state system uses salt state files to define the state a server needs to be in. . Between the remote execution system, and state management Salt addresses the backbone of cloud and data center management. . This particular package provides shared libraries that salt-master, salt-minion, and salt-syndic require to function. Homepage: https://saltproject.io/ Original-Vcs-Browser: https://github.com/saltstack/salt.git Original-Vcs-Git: git://github.com/saltstack/salt.git Package: salt-master Priority: optional Section: admin Installed-Size: 127 Maintainer: Cloud X OS Support Original-Maintainer: Debian Salt Team Architecture: all Source: salt Version: 3005.4+ds-1+cx1 Depends: salt-common (= 3005.4+ds-1+cx1), python3:any Recommends: python3-git Filename: pool/main/s/salt/salt-master_3005.4+ds-1+cx1_all.deb Size: 40596 MD5sum: 93e1f3a15a0c94daff781f88219b2e65 SHA1: a7aac67b5a069b9e4656430e260c255796cf02ff SHA256: b1015d3d042293a453f9a2cafb7793afa582d32d5b17c8e91673f714d9fd28ce SHA512: c0c690b3ab185667857674229773eb4481e80429f08143ba0ff26d51238744fe44fdbaba19517fcd5595d0ec2188f521dd53f85a2999032b3fd9acd4f341852c Description: remote manager to administer servers via salt salt is a powerful remote execution manager that can be used to administer servers in a fast and efficient way. . It allows commands to be executed across large groups of servers. This means systems can be easily managed, but data can also be easily gathered. Quick introspection into running systems becomes a reality. . Remote execution is usually used to set up a certain state on a remote system. Salt addresses this problem as well, the salt state system uses salt state files to define the state a server needs to be in. . Between the remote execution system, and state management Salt addresses the backbone of cloud and data center management. . This particular package provides the salt controller. Homepage: https://saltproject.io/ Original-Vcs-Browser: https://github.com/saltstack/salt.git Original-Vcs-Git: git://github.com/saltstack/salt.git Package: salt-minion Priority: optional Section: admin Installed-Size: 128 Maintainer: Cloud X OS Support Original-Maintainer: Debian Salt Team Architecture: all Source: salt Version: 3005.4+ds-1+cx1 Depends: bsdmainutils, dctrl-tools, salt-common (= 3005.4+ds-1+cx1), python3:any Recommends: debconf-utils, dmidecode Suggests: python3-augeas Filename: pool/main/s/salt/salt-minion_3005.4+ds-1+cx1_all.deb Size: 28604 MD5sum: e6e42ab473288bc9302f4e848c57e40a SHA1: 6373e9561fb0bc4092966c71b9c0ce3a702bf53e SHA256: 0e64715c0e92374c5d11459590b829d44534cd88522acb1ba0dd5713fd6f819b SHA512: 18df7839224f6563e46198e24829bebab8f8eee776a52eb1afc481a7da5dede6def0393bec64376fad6f1efa90e44f96f70df73cbd0cea0e9fd9b3e67dc082e8 Description: client package for salt, the distributed remote execution system salt is a powerful remote execution manager that can be used to administer servers in a fast and efficient way. . It allows commands to be executed across large groups of servers. This means systems can be easily managed, but data can also be easily gathered. Quick introspection into running systems becomes a reality. . Remote execution is usually used to set up a certain state on a remote system. Salt addresses this problem as well, the salt state system uses salt state files to define the state a server needs to be in. . Between the remote execution system, and state management Salt addresses the backbone of cloud and data center management. . This particular package provides the worker / agent for salt. Homepage: https://saltproject.io/ Original-Vcs-Browser: https://github.com/saltstack/salt.git Original-Vcs-Git: git://github.com/saltstack/salt.git Package: salt-ssh Priority: optional Section: admin Installed-Size: 45 Maintainer: Cloud X OS Support Original-Maintainer: Debian Salt Team Architecture: all Source: salt Version: 3005.4+ds-1+cx1 Depends: salt-common (= 3005.4+ds-1+cx1), python3:any Filename: pool/main/s/salt/salt-ssh_3005.4+ds-1+cx1_all.deb Size: 14508 MD5sum: 1408417691d4e5d4603ce5d75fed8223 SHA1: e5660e86ceb61eaa3525dad597dc732b9cd0d6ce SHA256: df837adbc1e1313f686d4d6bf1c6c25e173752d688ef024a99668030f38e505d SHA512: c2b66e669761a3a229a0a88ca91039aea5dadfc13f521acc632170198507afda635b0929a2a8df9ea50f694664e8991f7868469aa2b50d71fba5912ea771c981 Description: remote manager to administer servers via Salt SSH salt is a powerful remote execution manager that can be used to administer servers in a fast and efficient way. . It allows commands to be executed across large groups of servers. This means systems can be easily managed, but data can also be easily gathered. Quick introspection into running systems becomes a reality. . Remote execution is usually used to set up a certain state on a remote system. Salt addresses this problem as well, the salt state system uses salt state files to define the state a server needs to be in. . Between the remote execution system, and state management Salt addresses the backbone of cloud and data center management. . This particular package provides the salt ssh controller. It is able to run salt modules and states on remote hosts via ssh. No minion or other salt specific software needs to be installed on the remote host. Homepage: https://saltproject.io/ Original-Vcs-Browser: https://github.com/saltstack/salt.git Original-Vcs-Git: git://github.com/saltstack/salt.git Package: salt-syndic Priority: optional Section: admin Installed-Size: 54 Maintainer: Cloud X OS Support Original-Maintainer: Debian Salt Team Architecture: all Source: salt Version: 3005.4+ds-1+cx1 Depends: salt-master (= 3005.4+ds-1+cx1), python3:any Filename: pool/main/s/salt/salt-syndic_3005.4+ds-1+cx1_all.deb Size: 13716 MD5sum: f9b05df5eeffdef8eca4a3b096f87f53 SHA1: 8bc67e232b9bf8655991b6e97ac109f013e97a64 SHA256: a27d7de40e31c1b6dc3f4ae4f2a6986ef9350308bc5a2d60ac0c8b93d2a385e8 SHA512: 5d6a65b983af1559e7745e90460c6b984a24b92e608cc8124b09c7790a59952555595b0234ba3e9a2c23a66dde2d9872e9aac00e65948adff130d1fe25a559d1 Description: master-of-masters for salt, the distributed remote execution system salt is a powerful remote execution manager that can be used to administer servers in a fast and efficient way. . It allows commands to be executed across large groups of servers. This means systems can be easily managed, but data can also be easily gathered. Quick introspection into running systems becomes a reality. . Remote execution is usually used to set up a certain state on a remote system. Salt addresses this problem as well, the salt state system uses salt state files to define the state a server needs to be in. . Between the remote execution system, and state management Salt addresses the backbone of cloud and data center management. . This particular package provides the master of masters for salt - it enables the management of multiple masters at a time. Homepage: https://saltproject.io/ Original-Vcs-Browser: https://github.com/saltstack/salt.git Original-Vcs-Git: git://github.com/saltstack/salt.git Package: strongswan Priority: optional Section: net Installed-Size: 156 Maintainer: Cloud X OS Support Architecture: all Version: 5.9.11-2+vyos0+cx1 Depends: strongswan-charon, strongswan-starter Filename: pool/main/s/strongswan/strongswan_5.9.11-2+vyos0+cx1_all.deb Size: 85604 MD5sum: dca0ce910ca0ab06de4ee48b0ae29e98 SHA1: 074217e3c6650dba3a63d3c7441e23e73c4ac25c SHA256: 524c63473832bcab1922c9e47e81d890cbe73890ad372cadfcf3a39eb7620ac4 SHA512: ed5df5bddb36b78768956da469413b6309723c1c2ce894826e68f65325db240b179616d36dbcfd504753410a6670ea2999b82d723041ecc4bec2a3d9385ffabe Description: IPsec VPN solution metapackage The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This metapackage installs the packages required to maintain IKEv1 and IKEv2 connections via ipsec.conf or ipsec.secrets. Homepage: http://www.strongswan.org Package: strongswan-charon Priority: optional Section: net Installed-Size: 222 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Provides: ike-server Depends: iproute2 | iproute, libstrongswan (= 5.9.11-2+vyos0+cx1), strongswan-starter, libc6 (>= 2.34), strongswan-libcharon (>= 5.9.11) Pre-Depends: debconf | debconf-2.0 Filename: pool/main/s/strongswan/strongswan-charon_5.9.11-2+vyos0+cx1_amd64.deb Size: 90432 MD5sum: 5bf2df673875f7045e8da2f429b7ad20 SHA1: 3ab2f52802f16482fb0119b04597642f05a9450b SHA256: 1d953b5ca003b4e2884bad57e4a2544ff24c406cbbc707b80ea6af1c4d71adbd SHA512: d0a0fe5a6b0824c93ce536e154fe73f2b3efc557c535991a81ab71f8dd20928f5c1b2b2c875242a8ce5ce97baad8a3ff5047e01e9dee512db7b7959c1177164d Description: strongSwan Internet Key Exchange daemon The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . charon is an IPsec IKEv2 daemon which can act as an initiator or a responder. It is written from scratch using a fully multi-threaded design and a modular architecture. Various plugins can provide additional functionality. Homepage: http://www.strongswan.org Package: strongswan-charon-dbgsym Priority: optional Section: debug Installed-Size: 66 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: strongswan-charon (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/strongswan-charon-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 52612 MD5sum: 9322aac8ff37f1b321e52c6543e57d07 SHA1: 7a33b38d41f46c7a54148fb7a749108f7bdfaf38 SHA256: d94f01f3465b68733e71f5e0176136ed04fdfa8234c0e23d5e27425020c514f5 SHA512: 2c45e38248eaeccd947b81f85a6e5534427b5342e3a7a82f73465ec6bba5d948b10679bee71e99d005b352871a618dee21d55f79b87fd22f94fb15328fefb0d3 Description: debug symbols for strongswan-charon Auto-Built-Package: debug-symbols Build-Ids: 9cf94189d950031ac4167524d38d45778cfa3589 Package: strongswan-libcharon Priority: optional Section: net Installed-Size: 897 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Replaces: strongswan-starter (<= 5.6.1-2) Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.34) Recommends: libcharon-extauth-plugins Suggests: libcharon-extra-plugins Breaks: strongswan-starter (<= 5.6.1-2) Filename: pool/main/s/strongswan/strongswan-libcharon_5.9.11-2+vyos0+cx1_amd64.deb Size: 306044 MD5sum: 3cc0c8b7579c9f9302352470996f9019 SHA1: 8e580e04fe59b48f89a10cf3672fe1ce271450ae SHA256: 325079a85776f747b3c39124e626766f13213f3601540c68b518518c46c1ed3b SHA512: ba02cf0d5f3a1915cfb3b9a014e0d9034d5ec6c40634780e4402c9208cca0d6b0533184116737e65c6326e94677ffbafe71a1c6a7f771603717303e082f6464f Description: strongSwan charon library The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package contains the charon library, used by IKE client like strongswan-charon, strongswan-charon-cmd or strongswan-nm as well as standard plugins: - socket-default - counters - bypass-lan (disabled by default) . On Linux, it also contains the xfrmi binary which can be used on Linux 4.19+ to create XFRM interfaces (for more information, see https://wiki.strongswan.org/projects/strongswan/wiki/RouteBasedVPN) Homepage: http://www.strongswan.org Package: strongswan-libcharon-dbgsym Priority: optional Section: debug Installed-Size: 1068 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: strongswan-libcharon (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/strongswan-libcharon-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 982664 MD5sum: 6910cccd37ad0f2552c15db1a1f68d00 SHA1: 1d0a61971c4ba7a7b99a7e7f03b9791b1c2455bb SHA256: 2afd4490c8ff9f2747dd66c0d1f463fc2a81ba69f917a965c499a9abc3535ee2 SHA512: a241c7dbee1a9e5457de046fdc7478e5b6e68a92fdaf3c953a6253e700b742d7d108b1bcc36a6653d6e24140082423adb9a2c7b9580b4a615b79a3b030ec0f31 Description: debug symbols for strongswan-libcharon Auto-Built-Package: debug-symbols Build-Ids: 169154224604514384b4f43fdbd0ec0e389c04dc 63efd144a8de51b7e3ddcf6205289b2f59fdd1fb 9ec84b92ea2e1eebc55703f59c295ddf1fe0d308 e373f206a1d4348fcd55520b90d92dcdd44e537c e5178eb57cf97a64f1c120716f3ce69c40eef8af f3d624ab0868f6c1ce51e7896a9fdfc7589616dc Package: strongswan-nm Priority: optional Section: net Installed-Size: 152 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Replaces: network-manager-strongswan (<= 1.4.1-1~) Recommends: network-manager-strongswan Filename: pool/main/s/strongswan/strongswan-nm_5.9.11-2+vyos0+cx1_amd64.deb Size: 78844 MD5sum: 6ca8234a55b86db855b1b019a624a796 SHA1: 1ba4e32b937febf0b9e59bd09631cb5f4ad91b37 SHA256: 4d5b30c46572e6562f445324e44d79986bd0b35322383400a9bcf989cd93fb32 SHA512: cb01deccb7887a5ba9db30c087c60caa7339ece85a5677630bdd91948389a29da621c78b2e7e1c892aeadfe7045db219fbe6c33b9769a08b4a5a79cab526773b Description: strongSwan plugin to interact with NetworkManager The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This plugin provides an interface which allows NetworkManager to configure and control the IKEv2 daemon directly through D-Bus. It is designed to work in conjunction with the network-manager-strongswan package, providing a simple graphical frontend to configure IPsec based VPNs. Homepage: http://www.strongswan.org Package: strongswan-pki Priority: optional Section: net Installed-Size: 315 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.34), libcharon-extra-plugins (>= 5.9.11) Filename: pool/main/s/strongswan/strongswan-pki_5.9.11-2+vyos0+cx1_amd64.deb Size: 146716 MD5sum: 6e47da8d484fa0be5248b451672daff9 SHA1: ff7430388412f18d650bcee30c25dd7bb8eb194f SHA256: 4f0c70c8f849416fced52ead83d81d8ac81654c7cac76fbfd7b516ab4e7d6814 SHA512: a2ae78ac1a2c6ef771bd82a3bda3283a19a6f4f81e3e8a74dc02d0f7cdf8319f110cdbb118d4cd603d79ca3114f80a529448fe1bd256c9d362521dcf3cf88a75 Description: strongSwan IPsec client, pki command The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package contains the pki tool which allows on to run a simple public key infrastructure. Homepage: http://www.strongswan.org Package: strongswan-pki-dbgsym Priority: optional Section: debug Installed-Size: 144 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: strongswan-pki (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/strongswan-pki-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 127504 MD5sum: ab4c7de046754afa9ccc22d38150c04f SHA1: bfe71974f50e32814c202ba6956e2618bb7d8a85 SHA256: 344fe8fcd09c54a4d0179d92d7670c89799a65db9aa4e6abb5baeb0277bb81d2 SHA512: 68e89a529449c371807dc9a851943d7d2069147f017ff0e04802d0acbdc04e89bc9c81e4d446d355ea1b40b971229a437df0da959356404d777b0374e44db4f9 Description: debug symbols for strongswan-pki Auto-Built-Package: debug-symbols Build-Ids: 162487284bcb127abd64a7114d75cd3bda2139cd Package: strongswan-starter Priority: optional Section: net Installed-Size: 587 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: adduser, libstrongswan (= 5.9.11-2+vyos0+cx1), sysvinit-utils (>= 3.05-3), debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.34) Pre-Depends: init-system-helpers (>= 1.54~) Recommends: strongswan-charon Conflicts: openswan Filename: pool/main/s/strongswan/strongswan-starter_5.9.11-2+vyos0+cx1_amd64.deb Size: 214288 MD5sum: e1df1a2f793d1267470613a5d1b6b053 SHA1: ea423f8c78528bdd89bffba40a555dd08fa13186 SHA256: 45c49f0c25022c72f413b0d1cc7839ea5be464ae4463611ad4eb6e978619b301 SHA512: 5bff52dbe688913078d8f4749467a2835c3e1774832c035888d977aa4d2adf5f3057b8971045ba704ff85659ff3512b7e835813d9d01f1adcd27ab245ef49557 Description: strongSwan daemon starter and configuration file parser The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . The starter and the associated "ipsec" script control the charon daemon from the command line. It parses ipsec.conf and loads the configurations to the daemon. Homepage: http://www.strongswan.org Package: strongswan-starter-dbgsym Priority: optional Section: debug Installed-Size: 331 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: strongswan-starter (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/strongswan-starter-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 293980 MD5sum: c54c1c05f92e22521e5015cfc7812cf8 SHA1: 0e3e5911ae3e82267120c4fb521dca5bc0e80a15 SHA256: 7d2cf7c6fb9bda8c37b046022e7f033e9360117192f6549c33a6d64ed5138a81 SHA512: 8a051abb2df60a458e2a9d259c78d36fc5a19ae91b1345a80bd882cfb9abd53bafee4bb07788abfb11cda4682ae441a9f54b2152ec44143083b4a9cc716c1cd6 Description: debug symbols for strongswan-starter Auto-Built-Package: debug-symbols Build-Ids: 490619152b09e911931f62519b8b96ddb244b065 628d61a390fd6985c443f2e28baa3b53fb7590b4 8ac7ce053da03905ad218f552aa9d3578c812726 Package: strongswan-swanctl Priority: optional Section: net Installed-Size: 509 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Replaces: strongswan-starter (<< 5.8.0-1) Depends: libstrongswan (= 5.9.11-2+vyos0+cx1), libc6 (>= 2.34) Breaks: strongswan-starter (<< 5.8.0-1) Filename: pool/main/s/strongswan/strongswan-swanctl_5.9.11-2+vyos0+cx1_amd64.deb Size: 183572 MD5sum: 1dc459ec4ed31dfa59d9da4a3ed44b35 SHA1: d26d6b61af7a3725f96deeb2299e4362a39a85f4 SHA256: 55902c75b077a85f544819ef0620da030b53ecf62c4955bb830f9c9f76bb1a60 SHA512: 512e43424734b627472677c431da0df32ca2db66524bd16197b478b2b72ac9e44d8bd41cf8eadefca5b49c5f8bd0a3862ce6838116963d480dd0cc90ac36bd10 Description: strongSwan IPsec client, swanctl command The strongSwan VPN suite uses the native IPsec stack in the standard Linux kernel. It supports both the IKEv1 and IKEv2 protocols. . This package contains the swanctl interface, used to configure a running charon daemon Homepage: http://www.strongswan.org Package: strongswan-swanctl-dbgsym Priority: optional Section: debug Installed-Size: 412 Maintainer: Cloud X OS Support Architecture: amd64 Source: strongswan Version: 5.9.11-2+vyos0+cx1 Depends: strongswan-swanctl (= 5.9.11-2+vyos0+cx1) Filename: pool/main/s/strongswan/strongswan-swanctl-dbgsym_5.9.11-2+vyos0+cx1_amd64.deb Size: 372120 MD5sum: a7aae8c2f04022e619dbfe7e764d9c70 SHA1: eb39b2a6beab4b691c3b80a2d9b2cc068ddb09ec SHA256: 695735b1d5def035a654e9b0d5cd7559a337b79a6c5509574189e1f721c8afcb SHA512: d48bece2ba91a3ad77fcfe421e5bf7e418d795c184eec7b8c18d79b9c737610296631f49f95c2eb94b8ffe720f280c535b50e42f86a5f20950768331d43e00b1 Description: debug symbols for strongswan-swanctl Auto-Built-Package: debug-symbols Build-Ids: 80e0b98f96962e2a2bd45f50b5d0b477c6bac35e 979da121bf0ceee3fe6a02475861e0290c543725 e7619f794c2fdc1bdb9d5af7846d2c4071ed6808 Package: telegraf Priority: optional Section: default Installed-Size: 200612 Maintainer: Cloud X OS Support Architecture: amd64 Version: 1.28.3-1+cx1 Filename: pool/main/t/telegraf/telegraf_1.28.3-1_amd64.deb Size: 55829844 MD5sum: 148e47c925e417cc96c63e3eb046ac93 SHA1: 3a0c6c81014bb62405aae7f50d39682d22a8a5eb SHA256: ec97749f960a8a8b67a203a20a16c325e24d532469f5bcdb8f245ff3dbfe5cf9 SHA512: ebbf89a5ee9e8dace3caacf8e0a8fede5f21f8c9a8c1d4dda291425cd6fd85fe85208582a30583fe2dd4e0c2f981ed56a7433c8bc0a15e26ae2e290ccb9b050a Description: Plugin-driven server agent for reporting metrics into InfluxDB. Homepage: https://github.com/influxdata/telegraf License: MIT Vendor: InfluxData Package: twamp-client Priority: optional Section: net Installed-Size: 369 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: libc6 (>= 2.34), libcap2 (>= 1:2.10), libcap2-bin Filename: pool/main/o/owamp/twamp-client_4.4.6-1+cx1_amd64.deb Size: 169232 MD5sum: 6106fe873df07ef2f87ac17763198f6d SHA1: 8345106c13401a6b64d06f07fa1a71ae56ae10c2 SHA256: 0d0898884c8b82eecc85a1daba9d68ff4c21a58ceeec9981668aa293ed7ee298 SHA512: 8d5664c8f179ef3cd15ff183ac2b149d0d360be573219a990619431ccbc2b15df415bce8ea6fa3746cdf4d88147635078ee8fd02bc5c9d5a740aa3360493ff52 Description: TWAMP command line client utilities TWAMP is a client/server package that allows one to measure the latency between hosts. Like ping, TWAMP enables you to measure the two-way or round-trip delay between two hosts. It is an implementation of the Two-Way Active Measurement Protocol as defined by RFC5357. . This package contains command line client utilities for performing measurements with an twamp server. Homepage: http://software.internet2.edu/owamp/ Package: twamp-client-dbgsym Priority: optional Section: debug Installed-Size: 128 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: twamp-client (= 4.4.6-1+cx1) Filename: pool/main/o/owamp/twamp-client-dbgsym_4.4.6-1+cx1_amd64.deb Size: 99832 MD5sum: 0410f9ac1f9fb144a08650729fe5416d SHA1: 9fa56ee45c4b94be9e9d65dd7c92d5a61c075515 SHA256: a3088985537be38178cb4e3724ae4a74cdce02959e71c7613ea9aff65dbbceac SHA512: 2f73a171b6201140b34e8ea7185611537a99b01521c8ffea8bd7d6a1ea3edbf223b17fdff3bc608a473f92f5ee3adf271eda17ef9886162ac81d43485f0b03fc Description: debug symbols for twamp-client Auto-Built-Package: debug-symbols Build-Ids: 4ff49848e07246432e7b8c7a28ba32b5b054ee5e Package: twamp-server Priority: optional Section: net Installed-Size: 412 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: libc6 (>= 2.34), libcap2 (>= 1:2.10), adduser, lsb-base, ntp | time-daemon Filename: pool/main/o/owamp/twamp-server_4.4.6-1+cx1_amd64.deb Size: 182600 MD5sum: 9ab7483fe8e31b4764cf6c7412ae556b SHA1: ac62e26bc195b53f47cdb6271fbbf44147a6948e SHA256: 1c62225c163761de7946539edc40475b35f60c8288c1507d6f8c0f11eab67f54 SHA512: c5dc884a712414accb70e80eacf04907d88398f4a1aa224cc327b058c7eda5f538d558165be24a70ddc5cbe4841262288e2f0512fff593a966f06f88a282f07c Description: TWAMP daemon TWAMP is a client/server package that allows one to measure the latency between hosts. Like ping, TWAMP enables you to measure the two-way or round-trip delay between two hosts. It is an implementation of the Two-Way Active Measurement Protocol as defined by RFC5357. . This package contains the twamp server. Homepage: http://software.internet2.edu/owamp/ Package: twamp-server-dbgsym Priority: optional Section: debug Installed-Size: 135 Maintainer: Cloud X OS Support Architecture: amd64 Source: owamp Version: 4.4.6-1+cx1 Depends: twamp-server (= 4.4.6-1+cx1) Filename: pool/main/o/owamp/twamp-server-dbgsym_4.4.6-1+cx1_amd64.deb Size: 105424 MD5sum: 9c2a41995a783b57c4b410ed561a752a SHA1: 2d9d252bd79e640b745c47b0bdd6c80df68d807a SHA256: 166a34d3fe42568b4565c8f43157db227ef159fb52465215d563846bf8c9764c SHA512: ce9b4d7af33fae9105927bb97bf56b4887723371def39cb4f994e91496d71e5d5f9b31ccf0527b74c07521864e8f02f62b834dd189cb4ad088dde2838a01df40 Description: debug symbols for twamp-server Auto-Built-Package: debug-symbols Build-Ids: f0adf38d461c74bbbdf96cc4c1ab640798f85dfc Package: udp-broadcast-relay Priority: optional Section: net Installed-Size: 37 Maintainer: Cloud X OS Support Original-Maintainer: Christian Poessinger Architecture: amd64 Version: 0.1+vyos3+equuleus1+cx1 Filename: pool/main/u/udp-broadcast-relay/udp-broadcast-relay_0.1+vyos3+equuleus1+cx1_amd64.deb Size: 6392 MD5sum: c6304ff69ca90b888075ea4e976e8055 SHA1: 738f488a51f50bff8b9503f91a2a7ad05510dbab SHA256: a2b322ac67764c49dbfaac38af40a9c59a12f252620c4d2c64d2645b6d12b4e9 SHA512: cbbfd969e07d8d7f08f6f3ae25c4c780cf26d6a13b69f5328e96818667c8691fda5c518faf912ef54d5757bdde8a999dacd42741b2c4688628afbede0231f6eb Description: UDP Broadcast Packet Relay This program listens for packets on a specified UDP broadcast port. When a packet is received, it sends that packet to all specified interfaces but the one it came from as though it originated from the original sender. . The primary purpose of this is to allow games on machines on separated local networks (Ethernet, WLAN) that use udp broadcasts to find each other to do so. . It also works on ppp links, so you can log in from windows boxes (e.g. using pptp) and play LAN-based games together. Currently, you have to care about upcoming or downgoing interfaces yourself. Homepage: http://github.com/c-po/udp-broadcast-relay Original-Vcs-Git: http://github.com/c-po/udp-broadcast-relay Package: vyatta-bash Priority: optional Section: shells Installed-Size: 1250 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 4.1-3+vyos2+current2+cx1 Depends: base-files (>= 2.1.12), debianutils (>= 2.15), bash (>= 3.1) Pre-Depends: libc6 (>= 2.34), libtinfo6 (>= 6) Filename: pool/main/v/vyatta-bash/vyatta-bash_4.1-3+vyos2+current2+cx1_amd64.deb Size: 641636 MD5sum: 23fd56e0160936326754829ab657e4b1 SHA1: 9e7543b758860e7ae70000efffb7d691666dc94c SHA256: cec4b6000b0b5475bd6a48fe9a54f93defcd6af7e0c6d32632809ab5688eb98d SHA512: 36fca858d343a06c2e89a2dd423e7170c34c94fe430026789efd8d1c67843ba85a63f5d1e2051cdfa3606800c4a37b8a1e21850ea5eed8e30b9494877104f718 Description: The VyOS Shell based on GNU bash The VyOS Shell based on GNU Bourne Again SHell. . Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file. Bash also incorporates useful features from the Korn and C shells (ksh and csh). . Bash is ultimately intended to be a conformant implementation of the IEEE POSIX Shell and Tools specification (IEEE Working Group 1003.2). Package: vyatta-bash-dbgsym Priority: optional Section: debug Installed-Size: 1164 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyatta-bash Version: 4.1-3+vyos2+current2+cx1 Depends: vyatta-bash (= 4.1-3+vyos2+current2+cx1) Filename: pool/main/v/vyatta-bash/vyatta-bash-dbgsym_4.1-3+vyos2+current2+cx1_amd64.deb Size: 1079688 MD5sum: a9dbdc0993539c5ab15fb2ac1e5f8c19 SHA1: a24ff7c2b47e8a35fe09479c8aca9e9a4279725b SHA256: dd6a3ef8d8e4dcf60f213c0120ac029c06e8dee371dfd9e6dafd4b905c715912 SHA512: 65666ea9878a61c8c0dcc7da8f2ff2b59fa7b09cf1f272f884b7cb82c1904cd5253e8fa3c29107e078f7d524b3b1f10cc74c7c84422b40ac24c809f4a02630d7 Description: debug symbols for vyatta-bash Auto-Built-Package: debug-symbols Build-Ids: 48dcf7c14ad1823acd66a3994b7630a594fdffaf Package: vyatta-biosdevname Priority: extra Section: contrib/net Installed-Size: 60 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 1:0.3.11+vyos2+current2+cx1 Depends: libc6 (>= 2.34), libpci3 (>= 1:3.5.1), zlib1g Filename: pool/main/v/vyatta-biosdevname/vyatta-biosdevname_0.3.11+vyos2+current2+cx1_amd64.deb Size: 19252 MD5sum: 18aed7aefe2916d40abd5df687b918a3 SHA1: 21ec2a8302450a2187f546c766e9c6902d273443 SHA256: 425a9a7da508955e559fab07cf6d10a2ac32daed21781cf4fddfedb03b6148c9 SHA512: d0ef9e2e6c03702c6e4c84993d8e49341bb07525befea7b67fc328d5583efdaa59b8c4b1a3922d61283069bbd885a518a270c73ee568a9b11ef2c3f30f0113c6 Description: VyOS version of the biosdevname utility. Provides biosdevname which takes a kernel device name as an argument, and returns the BIOS-given name it "should" be. This is necessary on systems where the BIOS name for a given device (e.g. the label on the chassis is "Gb1") doesn't map directly and obviously to the kernel name (e.g. eth0). Package: vyatta-biosdevname-dbgsym Priority: optional Section: contrib/debug Installed-Size: 77 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyatta-biosdevname Version: 1:0.3.11+vyos2+current2+cx1 Depends: vyatta-biosdevname (= 1:0.3.11+vyos2+current2+cx1) Filename: pool/main/v/vyatta-biosdevname/vyatta-biosdevname-dbgsym_0.3.11+vyos2+current2+cx1_amd64.deb Size: 62012 MD5sum: b49fcd667758a7e1643850c56871b3c3 SHA1: 2ef4f9c9019accbe7e7a4b5817eecc510963d3ea SHA256: f31526cca1e2be6a6a44891ce2d50d485aa45d8dfd80d9e16553400286fab801 SHA512: 4f69d4a3bdb6bf8bca3e7b9047ffad1df6d0fff9f4759dd162037967b03b1e3acd5699712c3cfca22424c050b8fc4117c579b02661ed026cf7e16a24614d6619 Description: debug symbols for vyatta-biosdevname Auto-Built-Package: debug-symbols Build-Ids: 527499844e6892650f2babf0dc93c9bd729d1a1e Package: vyatta-cfg Priority: extra Section: contrib/net Installed-Size: 245 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 0.102.0+vyos2+current5+cx1 Depends: sed (>= 4.1.5), procps (>= 1:3.2.7-3), coreutils (>= 5.97-5.3), vyatta-bash | bash (>= 4.1), bsdutils (>= 1:2.13), libsocket6-perl, libvyatta-cfg1 (>= 0.102.0+vyos2+current5+cx1), unionfs-fuse, uuid-runtime, libboost-filesystem1.74.0, libapt-pkg4.12 | libapt-pkg5.0 | libapt-pkg6.0, perl:any, libc6 (>= 2.34), libgcc-s1 (>= 3.0), libglib2.0-0 (>= 2.12.0), libstdc++6 (>= 11) Suggests: util-linux (>= 2.13-5), net-tools, ncurses-bin (>= 5.5-5) Filename: pool/main/v/vyatta-cfg/vyatta-cfg_0.102.0+vyos2+current5+cx1_amd64.deb Size: 41784 MD5sum: a2a7c07bc2336ecfd683deabb97691b1 SHA1: 003b50c2f2d4db608afba71fb04c49652052b6c4 SHA256: e8a814d25029bf36d713f9983316d44faa16fc0accf4e58f4bfdd369faa1ea9c SHA512: e04ac9095a930a7c02b68a14f135e693b4a3bbe0fc5a7d6c31aad7b75d548dc0cef05df552baa1c9d1226f6c88e811c650a9efc4cb0020ae4aa9cd878acce1d1 Description: VyOS configuration system This package provides the VyOS configuration system, including the base configuration templates and the config-mode CLI completion mechanism. Package: vyatta-cfg-dbgsym Priority: optional Section: contrib/debug Installed-Size: 292 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyatta-cfg Version: 0.102.0+vyos2+current5+cx1 Depends: vyatta-cfg (= 0.102.0+vyos2+current5+cx1) Filename: pool/main/v/vyatta-cfg/vyatta-cfg-dbgsym_0.102.0+vyos2+current5+cx1_amd64.deb Size: 241356 MD5sum: cf851843624ccebd6028a72b062e2cd1 SHA1: cda91de683d536ca37809ade529e84c12add5134 SHA256: 4a4b085d73297dc49c7bd18b67b04dab14c40e45a5adac309bcf9de6ae2e9d07 SHA512: 64358a696ca0e9dd3d5b8712794e90b7ab7ac2787a94f5b261d8934b32029c7d2f62be63617496432d10dd94dd2c41d982578f7c0f14eefc25d757dbd965a2e5 Description: debug symbols for vyatta-cfg Auto-Built-Package: debug-symbols Build-Ids: 0d819c089e4eecda76a1803dd623a397729ba43a 288ec09fa7c1b39fc0a8792b7db4bd3b320fcd4b 3964ac5723883bca84eaa01100a6c627fac4dde1 8986b8cb145591f80957912359494ef8d26722e8 d32eaa44d86dfc1eb04b67f9fa0b4e6ef4844b94 Package: vyatta-cfg-system Priority: extra Section: contrib/net Installed-Size: 195 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 0.20.44+vyos2+current22+cx1 Depends: adduser, dialog, sed (>= 4.1.5), perl (>= 5.10.1), libnetaddr-ip-perl, procps (>= 1:3.2.7-3), coreutils (>= 5.97-5.3), vyatta-cfg (>= 0.100.1), libc6 (>= 2.7-6), libpam-runtime (>= 1.0.1-5), vyatta-bash | bash (>= 3.1), sysv-rc, udev (>= 160-1), rsyslog | system-log-daemon, busybox, sudo, ed, installation-report, laptop-detect, mgetty, tasksel, tcpdump, mdadm, libio-socket-ssl-perl, ipvsadm (>= 1:1.24-2.1), radvd (>= 1:1.1-3), apt-transport-https, libcap2-bin (>= 2.19), isc-dhcp-client, iproute2, curl, parted, libpam-cap, efibootmgr, libefivar0 | libefivar1, grub-efi-amd64-bin, dosfstools, gdisk, vyatta-biosdevname, dmidecode Pre-Depends: bash-completion Suggests: util-linux (>= 2.13-5), net-tools, ncurses-bin (>= 5.5-5), ntpdate Filename: pool/main/v/vyatta-cfg-system/vyatta-cfg-system_0.20.44+vyos2+current22+cx1_amd64.deb Size: 79268 MD5sum: 4657ceee3d691558b07abcf699931a5c SHA1: d387b0b7ab52b06a9ed4e1c1e8064c5d45f35f94 SHA256: c40852fc4dffda70ba5374dca2574bbe8d05a4e5765a993a9bce4de555a260a7 SHA512: a900ee26acb03b8a3babccb618e77783029aa74cd09a10dc1799db39ebe9f4a40b124c436a6bc04e224e405f564ef60051dffec3130d7d7698b0139000fc5a93 Description: VyOS system-level configuration VyOS system-level configuration utiliites, templates and scripts. Package: vyatta-op Priority: extra Section: contrib/net Installed-Size: 205 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: all Version: 0.14.0+vyos2+current8+cx1 Depends: sed (>= 4.1.5), console-terminus, ethtool, iputils-ping, procps (>= 1:3.2.7-3), vyatta-cfg (>= 0.16.26), vyatta-cfg-system (>= 0.19.93), frr (>= 5.1), coreutils (>= 5.97-5.3), host, vyatta-bash | bash (>= 4.1), less, libio-prompt-perl, mail-transport-agent, at, rsync, net-tools, libtimedate-perl Suggests: util-linux (>= 2.13-5), ncurses-bin (>= 5.5-5), dialog Filename: pool/main/v/vyatta-op/vyatta-op_0.14.0+vyos2+current8+cx1_all.deb Size: 46840 MD5sum: 3b79f80a82a35804af399adff9447ba4 SHA1: 7c3f66b30c5f9c8f9ff27eccf6add686efd81c42 SHA256: cb7e712236d3fb32744ca5ee5f554091d399173e902fe20f86bc53ef758511d4 SHA512: 86506f091503d3e0d9c420b67c85c4dfe04b7e9691b19185c657d20eb4844f5bf424a91a71e9427012b1b0188761fce6e65299ed42ce2f65d233f7adad39a82f Description: VyOS operational commands and completion scripts VyOS operational command bash completion script and base templates Package: vyatta-wanloadbalance Priority: extra Section: contrib/net Installed-Size: 273 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 0.13.70+vyos2+current1+cx1 Depends: sed (>= 4.1.5), perl (>= 5.8.8), procps (>= 1:3.2.7-3), vyatta-cfg (>= 0.15.33), vyatta-op, vyatta-bash | bash (>= 3.1), coreutils (>= 5.97-5.3), libc6 (>= 2.7-1) Suggests: util-linux (>= 2.13-5), net-tools, ethtool, ncurses-bin (>= 5.5-5), ntpdate Filename: pool/main/v/vyatta-wanloadbalance/vyatta-wanloadbalance_0.13.70+vyos2+current1+cx1_amd64.deb Size: 81812 MD5sum: 1c00681df8e11355a8980a4f7d98f78e SHA1: cf5f3b7b51e850594b7b8ce233d2765dfd54841f SHA256: d32895c8f50431cb71c6bcec43b8105db9cf95bbd3158b8091055e8e8d3b0d3a SHA512: 4bcd5d41cefd498e7bf4e24fe4b261e4c8b22961051583ec42ef81b2a23f64421c0257bc0e940051c43f256bf4901525b7ddbb738f5e813f19dcbffef4c07ad1 Description: VyOS load balancing configuration system This package has the VyOS wan load balance project. It includes support for the VyOS CLI for configuration. Package: vyatta-wanloadbalance-dbgsym Priority: optional Section: contrib/debug Installed-Size: 1410 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyatta-wanloadbalance Version: 0.13.70+vyos2+current1+cx1 Depends: vyatta-wanloadbalance (= 0.13.70+vyos2+current1+cx1) Filename: pool/main/v/vyatta-wanloadbalance/vyatta-wanloadbalance-dbgsym_0.13.70+vyos2+current1+cx1_amd64.deb Size: 1394776 MD5sum: 3d2337f044cc2dd44a7a82436171ce1e SHA1: a0014294c044c4ed2a4f50a3c5265cfe39e02117 SHA256: fef3edc6157519b4f8cba814250b72598f036c9418781b8e21d8820ed77cf669 SHA512: d01beef8866bdfb8348f0a5f9441af733c1580eb7c9ca6a60fb813fcb61cab93dabf431c21a0928320e2bb4abce93c9503567faab3fe8e7086873e9d48d7840a Description: debug symbols for vyatta-wanloadbalance Auto-Built-Package: debug-symbols Build-Ids: 921a3c0aa39442f038e5b95db3da859164c4b1ee Package: vyos-1x Priority: extra Section: contrib/net Installed-Size: 37542 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 1.4.0.2404171004+cx1 Depends: python3:any (>= 3.10), aardvark-dns, accel-ppp, auditd, avahi-daemon, beep, bmon, bsdmainutils, certbot, charon-systemd, conntrack, conntrackd, conserver-client, conserver-server, console-data, cron, curl, dbus, ddclient (>= 3.11.1), dmidecode, dropbear, easy-rsa, etherwake, ethtool, fdisk, fastnetmon, file, frr (>= 7.5), frr-pythontools, frr-rpki-rtrlib, frr-snmp, fuse-overlayfs, libpam-google-authenticator, git, grc, haproxy, hostapd, hsflowd, hvinfo, igmpproxy, ipaddrcheck, iperf, iperf3, iproute2 (>= 6.0.0), iptables, iputils-arping, isc-dhcp-client, isc-dhcp-relay, isc-dhcp-server, iw, jool, keepalived (>= 2.0.5), lcdproc, lcdproc-extra-drivers, libatomic1, libauparse0, libcharon-extra-plugins (>= 5.9), libcharon-extauth-plugins (>= 5.9), libndp-tools, libnetfilter-conntrack3, libnfnetlink0, libqmi-utils, libstrongswan-extra-plugins (>= 5.9), libstrongswan-standard-plugins (>= 5.9), libvyosconfig0, linux-cpupower, lldpd, lm-sensors, lsscsi, minisign, modemmanager, mtr-tiny, ndisc6, ndppd, netavark, netplug, nfct, nftables (>= 0.9.3), nginx-light, chrony, nvme-cli, ocserv, opennhrp, openssh-server, openssl, openvpn, openvpn-auth-ldap, openvpn-auth-radius, openvpn-otp, owamp-client, owamp-server, pciutils, pdns-recursor, pmacct (>= 1.6.0), podman, pppoe, procps, python3, python3-cryptography, python3-hurry.filesize, python3-inotify, python3-isc-dhcp-leases, python3-jinja2, python3-jmespath, python3-netaddr, python3-netifaces, python3-paramiko, python3-passlib, python3-psutil, python3-pyhumps, python3-pystache, python3-pyudev, python3-six, python3-tabulate, python3-vici (>= 5.7.2), python3-voluptuous, python3-xmltodict, python3-zmq, qrencode, radvd, salt-minion, sed, smartmontools, snmp, snmpd, squashfs-tools, squid, squidclient, squidguard, sshguard, ssl-cert, sstp-client, strongswan (>= 5.9), strongswan-swanctl (>= 5.9), stunnel4, sudo, systemd, telegraf (>= 1.20), tcpdump, tcptraceroute, telnet, tftpd-hpa, traceroute, tuned, twamp-client, twamp-server, udp-broadcast-relay, uidmap, usb-modeswitch, usbutils, vyatta-bash, vyatta-cfg, vyos-http-api-tools, vyos-utils, wide-dhcpv6-client, wireguard-tools, wireless-regdb, wpasupplicant (>= 0.6.7), zabbix-agent2, miniupnpd-nftables Pre-Depends: libnss-tacplus, libpam-tacplus, libpam-radius-auth Filename: pool/main/v/vyos-1x/vyos-1x_1.4.0.2404171004+cx1_amd64.deb Size: 1860172 MD5sum: 60fffd221590f3ed4accd6581297d233 SHA1: a495b217223aeed866864b0116ef34d80459fb80 SHA256: a0cc9748569f9b34dae651888b7c04a655d08dbc643aa2255b4c53c55bee2829 SHA512: 95ff26d2e6a52d8a70703318fc3686de2142157be6c41df6ef59b6ecab8d84cf442b7b2664b0a4e8913e02c751915c618e4cff31edb35f6d0c7bc96c47d316ad Description: VyOS configuration scripts and data VyOS configuration scripts, interface definitions, and everything Package: vyos-1x-dbgsym Priority: optional Section: contrib/debug Installed-Size: 16 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyos-1x Version: 1.4.0.2404171004+cx1 Depends: vyos-1x (= 1.4.0.2404171004+cx1) Filename: pool/main/v/vyos-1x/vyos-1x-dbgsym_1.4.0.2404171004+cx1_amd64.deb Size: 2628 MD5sum: 6ea9c410b6dc4b8b0fe3a67da62c70c1 SHA1: 1ca4bcc35789cbc25ede4dae84a3e9aa9241495a SHA256: a3d293adce5a6ffb6facfbc883dbc969707cacbb9e834ab369f4b5069f4504b4 SHA512: e275c0b78483a09e9f6de3b2018296f61e89db676ee0825e6c4175e13c444ed9af8cc25e426b4f5d7517c6e6e76ee0c54fee71885b1c041f3e6f08cc2198d9c6 Description: debug symbols for vyos-1x Auto-Built-Package: debug-symbols Build-Ids: abbe52245869e965f2c3355c19e111397a513bb6 Package: vyos-1x-smoketest Priority: extra Section: contrib/net Installed-Size: 2837 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: all Source: vyos-1x Version: 1.4.0.2404171004+cx1 Depends: skopeo, snmp, vyos-1x Filename: pool/main/v/vyos-1x/vyos-1x-smoketest_1.4.0.2404171004+cx1_all.deb Size: 401784 MD5sum: 1be2b20448f95dda3aedaf695e1e8230 SHA1: 457c4c137526e6dc56357aafc0398b24c2fa9013 SHA256: df208f0039dbd47035098f72b384bace0d076e1ea97a43ccd7bc8228ad45a917 SHA512: 743838d724c9cde8efb25099cfa3ba4f3d49c980b2c170e05d6d6c99590066ba411aa3ce3b5f8f807aa3ad3071de3b73f79e15e74b3dc5997ca271459da4e74c Description: VyOS build sanity checking toolkit Package: vyos-1x-vmware Priority: extra Section: contrib/net Installed-Size: 23 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyos-1x Version: 1.4.0.2404171004+cx1 Depends: vyos-1x, open-vm-tools Filename: pool/main/v/vyos-1x/vyos-1x-vmware_1.4.0.2404171004+cx1_amd64.deb Size: 4576 MD5sum: 2ac07188b52329e9d99319661203ead2 SHA1: 3159cf396db5c2cb97211d2c50ca3a171c653ac0 SHA256: 2e98d92a39a76e5c410b9663ef1aaad2374da21cc262d3b1ccfdd3fe8c9c51f3 SHA512: edb383751fa9126f41dbeb928057fc521aba585e86a03368f09f3e6c26219d8074a7b2aaa86a046da7f6870c0608d7c06e9da116a8a05cfed3ea22aaec75d869 Description: VyOS configuration scripts and data for VMware Adds configuration files required for VyOS running on VMware hosts. Package: vyos-http-api-tools Priority: extra Section: contrib/net Installed-Size: 53106 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 2.3+cx1 Pre-Depends: dpkg (>= 1.16.1), python3 Filename: pool/main/v/vyos-http-api-tools/vyos-http-api-tools_2.3+cx1_amd64.deb Size: 10119152 MD5sum: 26443ef55f126b1b43d88177af82e7f8 SHA1: 00f9c92aef8e8a4cbe88902b8490017a54b2a464 SHA256: d60ca9b0b831009fd398eea6f0745c895ed182b3fa4e67898e81b0b232e2cb45 SHA512: ca562bfc05d496d789ee5075164a77fab3c5e3306bf538e7045e4594d499aa5976c7aca8dcd841f02c197a79313526cd289acafcef3ecad1ee34d0ef0bfd32b1 Description: api tools for VyOS api tools for VyOS Package: vyos-http-api-tools-dbgsym Priority: optional Section: contrib/debug Installed-Size: 6468 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyos-http-api-tools Version: 2.3+cx1 Depends: vyos-http-api-tools (= 2.3+cx1) Filename: pool/main/v/vyos-http-api-tools/vyos-http-api-tools-dbgsym_2.3+cx1_amd64.deb Size: 4542292 MD5sum: cf1b691178bf2b107ccca02b376bcb64 SHA1: 3feec930e5cb7d18491dd48c6c3b768f6aaf1501 SHA256: e8a17b66fbc7fd71c3a12205099eebc61c402bfaa03b3a7090253ab0c4133095 SHA512: 0d414df41f88bde09e3e111ada749479dbdfca9abd9d2b4e989f426b1f088f643f24fdb7df46b318a5169b2eb87854beeaad7370c7fc2475d0a3d1f09a0da955 Description: debug symbols for vyos-http-api-tools Auto-Built-Package: debug-symbols Build-Ids: 087d6b20db2e26ee47a95172157cf4da8c38c1ba 0ab9bb120009b7b7c3bf7bbd7ed7d836a419b72a 0c37452d312a73c737a33eb3bb24d3ba0ebe8a32 0e7aae8638a0e4829bc2ac22509702245136b0ac 1108835d97bebdcb193476291e7088e5729466cf 12562aa695bc1cee3a6e4b9c1cb4dd02f09b57ea 1801e2e21600cd4ae06a544dedd6a385015f1b55 273c2237fe9693ef56aa7951c2441ec792f496f2 27bd8d31c4d76802544c9e14d4144c87c112d9b5 29ae73644579d230ecdcf8a693b413225bf00b91 37ffdffd4ef3ce327ec93209386bca62ee99fb0f 3c800fceeb4b6bd0dc8e6c154952a10d31b88fa7 40fd115cecc8bd5b92c03723bfe1557174a523d1 47465ad154dfca93729774b398d19b205ee4846a 50cf01b608f363925f718e200bb4b1c01ba3cc37 55728398ff641733cd04f6d71f192d61287a91ce 750244faa27abba58d2408676d6ba7f78046b112 8175865f0af2d03b3bf9261f5ef65c7f8cc6097f 8670e6d9895070cca214f8c60ba2976319192849 9a0f1a8f70aa9a35b0879d7ad56319388ef9fb01 9ef0a74b0e694ba068f9500bc0707d76038fe427 aaf583fd1ef738f56212c70e034d38e8d0ed9bc4 b883b711abf88073d8ee966a43bbb1b0438c5a27 c734f06d3510f11176da0714a66c6e592ce59b07 cd1390ba5ec138cb54da330dd851205abf62c648 cf9acfd641c2465f18baa68a3020180297664cd6 d6002f43de876a02cdc17fc3244d22c7efae49bc de77e9086494a031daf34b61fed66d702687fbd6 df5d94d3acb24d09aff9c9344f49f3af2b3c9b66 e1caf0fc266ed6b1fed95f00d0527fd1e7141f3c ec078fcbc0b00ad8ac3c25990d8295bcb3925c9f Package: vyos-intel-ixgbe Priority: optional Section: default Installed-Size: 944 Maintainer: Cloud X OS Support Architecture: amd64 Version: 5.19.9+cx1 Depends: linux-image-6.6.27-amd64-vyos-cx Filename: pool/main/v/vyos-intel-ixgbe/vyos-intel-ixgbe_5.19.9+cx1_amd64.deb Size: 245468 MD5sum: 8da2eaba749f4580a0c0ef9eae7e8693 SHA1: 334a8f0590e4a5a5f4cf1c7f02c54a6e79363b30 SHA256: 3e2060443b53f99a60c6d350c1404d91cedc9e15c7cb02ba3c90f6d6c8c31fa6 SHA512: e0cec42ad64ea02f839ed9ed62cf211afbe46e94bce3a6d0e6515f4ca6e95bb5ff13f1ac9439aad2a935c39a7c1848f04d2d490741ed89afa1cc7f862f0d4b66 Description: Vendor based driver for Intel ixgbe Homepage: https://sourceforge.net/projects/e1000/ License: GPL2 Vendor: none Package: vyos-intel-ixgbevf Priority: optional Section: default Installed-Size: 191 Maintainer: Cloud X OS Support Architecture: amd64 Version: 4.18.9+cx1 Depends: linux-image-6.6.27-amd64-vyos-cx Filename: pool/main/v/vyos-intel-ixgbevf/vyos-intel-ixgbevf_4.18.9+cx1_amd64.deb Size: 55678 MD5sum: d7e66afdb359d63aab929ec876fe56f4 SHA1: c34041bb9e2cda93a8eb9dccdb686250f01196d8 SHA256: 14144b268d1ab5b4b5f23a1fafedaf5ad9c2e8da165a38180f8381973bbd46f2 SHA512: a1b95ee600d89445360514fc964976c4d6f37489d2b806c199f82185aa5233f68d79632e2d29c1197cb8307d684ff15a63a130ec778d37c80023c1984fcb187f Description: Vendor based driver for Intel ixgbevf Homepage: https://sourceforge.net/projects/e1000/ License: GPL2 Vendor: none Package: vyos-intel-qat Priority: optional Section: default Installed-Size: 14654 Maintainer: Cloud X OS Support Architecture: amd64 Version: 4.24.0-00005-0+cx1 Depends: linux-image-6.6.27-amd64-vyos-cx Filename: pool/main/v/vyos-intel-qat/vyos-intel-qat_4.24.0-00005-0+cx1_amd64.deb Size: 4150278 MD5sum: 6944109143c7f46d2d307af003c46c85 SHA1: 425a201ae6414e94a7d4f166e9f7faef542825b5 SHA256: 17690ef6b192ed60743ff4fd0ae6bfe8e0675c72be510c1233af5222a5dcd50f SHA512: 2a1a774acb05bd1ad4e7e1ab25feee7d64a0c7383de9c697c6294e5a85147cff8af6564ce7b842a13f6be21765a6adb4edc9f0fe28a986599fced036b6ce657e Description: Vendor based driver for Intel QAT Homepage: https://intel.com/quickassist License: GPL2 Vendor: none Package: vyos-linux-firmware Priority: optional Section: kernel Installed-Size: 94840 Maintainer: Cloud X OS Support Architecture: all Version: 20231211+cx1 Filename: pool/main/v/vyos-linux-firmware/vyos-linux-firmware_20231211+cx1_all.deb Size: 51536680 MD5sum: e2ac2c2eea5a846ec93ec64c33917c91 SHA1: d9643de6bc7cb14f850b59124f0d313fdeb60361 SHA256: 808605d8ddb573b0de6fe4f6c06b81b39f17c025b5231b8055134369b5484f84 SHA512: 53357158b714afd7031f1bbb430ec1938798a38d35d49ad6202b6130726f7afc03df50493dfa69ecaca9b20fbdc17f03e2b33665023fbf4e2cd88b0d96061d09 Description: Binary firmware for various drivers in the Linux kernel Homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git License: unknown Vendor: none Package: vyos-user-utils Priority: extra Section: contrib/net Installed-Size: 9 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: all Version: 1.4.0+vyos1+current+cx1 Depends: aptitude, arpwatch, atop, bgpq3, dnsdist, dnsutils, exfat-fuse, exfatprogs, fancontrol, grepcidr, haveged, htop, iftop, iotop, ipcalc, irqtop, jq, libnss-myhostname, localepurge, lsof, minicom, nano, ndisc6, netcat-openbsd, nmap, numactl, openssh-client, screen, sipcalc, socat, ssl-cert, whois Filename: pool/main/v/vyos-user-utils/vyos-user-utils_1.4.0+vyos1+current+cx1_all.deb Size: 2208 MD5sum: 7bbe9042c732103939cb49ecf7ff97bd SHA1: 2c8554016e28b0c874cef058e9378df70b236168 SHA256: 9c9b1f89a38f650f6ed04f25ca6ff8568bf0eb61b54c9c18e3bfbaca65fe84e8 SHA512: 7fe6416890c53c2f4654ecb2655e37b091276d3416407a5682a4f46010ea49f45a79b064041ea5d053f1cbcae72044bc49578025a94d0cd617b8da5f26094435 Description: VyOS user utilities metapackage Installs utilities that are provided for the users but no used by VyOS scripts. Package: vyos-utils Priority: extra Section: contrib/net Installed-Size: 5379 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Version: 0.0.3+cx1 Depends: libc6 (>= 2.35), libpcre3 Filename: pool/main/v/vyos-utils/vyos-utils_0.0.3+cx1_amd64.deb Size: 774388 MD5sum: 5787555c5ad96e4fe21e0c1c275e639a SHA1: 416a140400b587bbc46f5c441d97e6ffd1a4c4f0 SHA256: e6689729371b5a528411e2946eaa4f24d9087de4581a0c1329a38297b67261f8 SHA512: 534939098bb15073496254bdcab9f461491ea5f717ae0f01bb6a98857144b861ea576c35a195f02bf1291a2f51c8779404b7bf57ad0521d389e1e20a34f488e8 Description: VyOS utils for value validation and other things VyOS utils for value validation and other things Package: vyos-utils-dbgsym Priority: optional Section: contrib/debug Installed-Size: 1547 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: amd64 Source: vyos-utils Version: 0.0.3+cx1 Depends: vyos-utils (= 0.0.3+cx1) Filename: pool/main/v/vyos-utils/vyos-utils-dbgsym_0.0.3+cx1_amd64.deb Size: 490904 MD5sum: c931e914e962949131319cecce23138e SHA1: c6984544e47bf9190019ccd40859dd1418878378 SHA256: 84e6515e28f0d50c0077f1a8bc2770ea6297f11cd2fb303f6cf237c84a8765ca SHA512: c47e48f75997b5c493f9869ce2eea30d6652b323349469c579adefc75df9f9b512fe428ff9137298569ecc5ec85f08240c4fd9a2b69857570efcfda3615bd55e Description: debug symbols for vyos-utils Auto-Built-Package: debug-symbols Build-Ids: 4309fee4af22b32e444cedd02f639e37db27dd70 48a571c315c20a1c05f06c51e18c0310c3d177d8 deed21b5ae0ecfdd999a4d12baafbb3f8e093bbd ed5b90268f70d104e1abb31d4047a6cbb8d61247 fc0d6e22ad1e7a6141c651af1d632736d7ff302f Package: vyos-world Priority: extra Section: contrib/net Installed-Size: 9 Maintainer: Cloud X OS Support Original-Maintainer: VyOS Package Maintainers Architecture: all Version: 1.4.0+vyos1+current+cx1 Depends: vyatta-cfg-system, vyatta-bash, vyatta-op, vyatta-cfg, vyatta-wanloadbalance, vyos-1x Filename: pool/main/v/vyos-world/vyos-world_1.4.0+vyos1+current+cx1_all.deb Size: 2300 MD5sum: 7b56272e938b03e3d24ed89d6e18b464 SHA1: 7b69259eeb25c216c743bdf74d130d2c586ccaef SHA256: e047a5c243e9d00e9f0aa4f0af7a0a73bbc384bdc6e5fa3def3c5aca51145fa6 SHA512: 111588d7786883496a9ebc548f3453a75a2009c7659bcee0817e028d89ad7227b7e6e69250ff39dcb6404dded3054c9c477a9c90cd154c05ae4ce3137e6698e6 Description: VyOS metapackage Installs everything required for VyOS to work Package: wide-dhcpv6-client Priority: optional Section: net Installed-Size: 255 Maintainer: Cloud X OS Support Architecture: amd64 Source: wide-dhcpv6 Version: 20080615-23+cx1 Depends: lsb-base (>= 3.0-6), sharutils, debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.36) Pre-Depends: init-system-helpers (>= 1.54~) Filename: pool/main/w/wide-dhcpv6/wide-dhcpv6-client_20080615-23+cx1_amd64.deb Size: 94112 MD5sum: 0f37fcfff83c0fbd14cb80cd95ed1f8d SHA1: 38560af2d0006889806e2f7225d526cbde53b790 SHA256: 015df23579efb8f2cf953dc15d9656da93c8fc042b627bccdd7bf53ced76c3c3 SHA512: 9986ef8fecbe50a54bda86c544ccd4dba304086cdfb6298db264099d3e8bb7ba2c7b16b016855866196e2a97a99d43d0184de2fd9c4f362639ddd62e594d0503 Description: DHCPv6 client for automatic IPv6 hosts configuration This is the DHCPv6 client from WIDE project. . DHCPv6 allows prefix delagation and host configuration for the IPv6 network protocol. . Multiple network interfaces are supported by this DHCPv6 package. Homepage: http://wide-dhcpv6.sourceforge.net/ Package: wide-dhcpv6-client-dbgsym Priority: optional Section: debug Installed-Size: 236 Maintainer: Cloud X OS Support Architecture: amd64 Source: wide-dhcpv6 Version: 20080615-23+cx1 Depends: wide-dhcpv6-client (= 20080615-23+cx1) Filename: pool/main/w/wide-dhcpv6/wide-dhcpv6-client-dbgsym_20080615-23+cx1_amd64.deb Size: 202960 MD5sum: 820bac9300030845b713c155e38f32cc SHA1: 0aabb2e58d9a523c02386ca3bf790ebbf02d5606 SHA256: a2a600ffc6f1a249487ebe7530bd7579490272bf03e4043c66acd1677a846c01 SHA512: 7f6ef1f306f30956d7c64d532804c38985740f1804278534f2786f6b5ca4e9c7a80794fd40ae0c9b55a30202fe70a3a90f94568dd7b262d64b25dcfbeb7c7e3b Description: debug symbols for wide-dhcpv6-client Auto-Built-Package: debug-symbols Build-Ids: 7c95bca766389eb9d70ab7c9f0ed4e65d253ece9 ffd61a90a8b15eabe02962889a5997bd6762dcf6 Package: wide-dhcpv6-relay Priority: optional Section: net Installed-Size: 107 Maintainer: Cloud X OS Support Architecture: amd64 Source: wide-dhcpv6 Version: 20080615-23+cx1 Depends: lsb-base (>= 3.0-6), debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.34) Pre-Depends: init-system-helpers (>= 1.54~) Filename: pool/main/w/wide-dhcpv6/wide-dhcpv6-relay_20080615-23+cx1_amd64.deb Size: 40092 MD5sum: e90032d906507c8da335929e8f182b25 SHA1: 56de92a0798c1286b1440a80ab4e5b4df99f4e50 SHA256: f0133242fa85c29061e17c597ee437f458da5960aa63c36bd9430c4996d30b7f SHA512: 77d5639c2dc3cb3734d2895fd071c76ed68339d3403eb68796f6185d0140c090d0d15f62591e86b20abbe10cce8c4a21d4341d0db7c5cb41ba931913740feac8 Description: DHCPv6 relay for automatic IPv6 hosts configuration This is the DHCPv6 relay from WIDE project. . DHCPv6 allows prefix delagation and host configuration for the IPv6 network protocol. . Multiple network interfaces are supported by this DHCPv6 package. Homepage: http://wide-dhcpv6.sourceforge.net/ Package: wide-dhcpv6-relay-dbgsym Priority: optional Section: debug Installed-Size: 91 Maintainer: Cloud X OS Support Architecture: amd64 Source: wide-dhcpv6 Version: 20080615-23+cx1 Depends: wide-dhcpv6-relay (= 20080615-23+cx1) Filename: pool/main/w/wide-dhcpv6/wide-dhcpv6-relay-dbgsym_20080615-23+cx1_amd64.deb Size: 73604 MD5sum: 37bda663d3e1c94afae53fcb8f8ea7cb SHA1: d40d571b7a8c02b970366334880cdaf7474de6ca SHA256: 8fca743fb28470dae2b4154e2bb6eec5250c5cd30003fea50cda5d3d54638983 SHA512: 4657a3a4ce2f42891e5c927ed86b4901e6f180e51176229a14a27528b7613eb3a09b666ee0d12e14e1bd72b818aa0f21549982ec6434f1f40ac9745d4c5f12ee Description: debug symbols for wide-dhcpv6-relay Auto-Built-Package: debug-symbols Build-Ids: 2026f81f90cd1f135f197157edbfe412f5e5ad05 Package: wide-dhcpv6-server Priority: optional Section: net Installed-Size: 219 Maintainer: Cloud X OS Support Architecture: amd64 Source: wide-dhcpv6 Version: 20080615-23+cx1 Depends: lsb-base (>= 3.0-6), debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.34) Pre-Depends: init-system-helpers (>= 1.54~) Filename: pool/main/w/wide-dhcpv6/wide-dhcpv6-server_20080615-23+cx1_amd64.deb Size: 82436 MD5sum: 4d8096ee5dd6660ccf205fe5f9aecbfb SHA1: 1ad2b96ae9510c0943a07fce38f3b40d5556dc0f SHA256: d82540d9334096b3db1399e09849b738cbf400dd560fdb7505190a3f559ddf5e SHA512: 227bc9fecc82df439fa8f13604ff231d93c30dc460c9b056997c936fd5bf3bdcffa934c5975ee5b6f3e8f4dd107ad71f3be0ab8983ed361e87a4dc234c38091a Description: DHCPv6 server for automatic IPv6 hosts configuration This is the DHCPv6 server from WIDE project. . DHCPv6 allows prefix delagation and host configuration for the IPv6 network protocol. . Multiple network interfaces are supported by this DHCPv6 package. Homepage: http://wide-dhcpv6.sourceforge.net/ Package: wide-dhcpv6-server-dbgsym Priority: optional Section: debug Installed-Size: 192 Maintainer: Cloud X OS Support Architecture: amd64 Source: wide-dhcpv6 Version: 20080615-23+cx1 Depends: wide-dhcpv6-server (= 20080615-23+cx1) Filename: pool/main/w/wide-dhcpv6/wide-dhcpv6-server-dbgsym_20080615-23+cx1_amd64.deb Size: 168476 MD5sum: fa485fa02d130c245f2dbb0411e5323a SHA1: 035af85598ccfd0bc9c3e7ecf5ae637f10183c9d SHA256: 55206c8e9ca789362c4dfcda6faf5624091fa604b522b5bdd5a5beab56a7ce4d SHA512: aa9407c0578ad3ab6789e9ce159f94ac1fe3b492fb511084f83da84be7eec58a7865a6d7eea7318c3183a133e0ab801bd4ea3ef98d930ad0b5ffdf29351bdfad Description: debug symbols for wide-dhcpv6-server Auto-Built-Package: debug-symbols Build-Ids: 6fc557ac5d8d2086f12e2fb47104cf8756732a37 Package: wpasupplicant Priority: optional Section: net Installed-Size: 3975 Maintainer: Cloud X OS Support Architecture: amd64 Source: wpa Version: 2.10-1028-g6b9c86466+cx1 Depends: libc6 (>= 2.34), libdbus-1-3 (>= 1.9.14), libnl-3-200 (>= 3.2.27), libnl-genl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.7.0), libpcsclite1 (>= 1.0.0), libreadline8 (>= 6.0), libssl3 (>= 3.0.0), adduser Suggests: wpagui, libengine-pkcs11-openssl Breaks: network-manager (<< 1.36.4-2~) Filename: pool/main/w/wpa/wpasupplicant_2.10-1028-g6b9c86466+cx1_amd64.deb Size: 1467760 MD5sum: 0d736407e4c429cdad23c4c69df755f8 SHA1: 9b3a4f22c9fce8db87d31aede01e7576bbf6ab3e SHA256: 0909b3fde784de0ff57b9964c2b02836440b725c63ec9633ccee01c1889d84c5 SHA512: c4cff9d7a618a733fc1c6893a01f34d50ab4a80da2d53e7cb7f1c595d2233e35d26b7c198144f19334151e1909fabbfd85c07f7684953444c1cb844291849db0 Description: client support for WPA and WPA2 (IEEE 802.11i) wpa-supplicant is a userspace daemon handling connection and authentication in wireless and wired networks, primarily secured with the WPA/WPA2/WPA3 protocols. This software provides key negotiation with the access point (WPA Authenticator), and controls association with IEEE 802.11i networks. Homepage: https://w1.fi/wpa_supplicant/ Multi-Arch: foreign Package: wpasupplicant-dbgsym Priority: optional Section: debug Installed-Size: 4682 Maintainer: Cloud X OS Support Architecture: amd64 Source: wpa Version: 2.10-1028-g6b9c86466+cx1 Depends: wpasupplicant (= 2.10-1028-g6b9c86466+cx1) Filename: pool/main/w/wpa/wpasupplicant-dbgsym_2.10-1028-g6b9c86466+cx1_amd64.deb Size: 4423192 MD5sum: a6408b0db4724fc9d99c405a598e5c6c SHA1: 9a14711e9062dbfa31fb8d246c1bc85c9dbcb741 SHA256: c99e7f3ceefe36a49ce209542cb59210f6abca115a2f77284ef82185d4388fd5 SHA512: d31dbb0f64f712894471804aa5edb1f4a521a3feb23fdce83734aa38715c2aa1ad1bff85d910f57949ee4040e1ef94f12fd68d6941b03af48ad7123e9689e6fa Description: debug symbols for wpasupplicant Auto-Built-Package: debug-symbols Build-Ids: 1e5bb88c9aa65ffad4fdf86a0b83ebf3da6187a6 3def681d2dca92f4bdad3910d1d1bed37fc6863c 9242824f25fc9d0ee6efbaa17fa890fec045bd8b