Dear all, I want to revive this old thread. I now have the following hardware at hand: - 8 servers with - AMD 7413 processors (24 cores, 48 hw threads) - 260 GB of RAM - 10 NVMEs each - dual 25GbE towards clients and - dual 100GbE for the cluster network The 2x25GbE NICs go into a dedicated VLT switch pair which is connected upstream with an overall of 4x100GbE DAC so the network path from the ceph cluster to my clients is limited to about 40GB/sec in network bandwidth. I realize that the docs recommend against splitting frontend/cluster network but I can change this later on. My focus is not on having multiple programs writing to the same file so lazy I/O is not that interesting for me I believe. I would be happy to later run a patched version of io500, though. I found [1] from croit to be quite useful. The vendor gives 3.5GB/sec sequential write and 7GB/sec sequential read per disk (which I usually read as "it won't get faster but real-world performance is a different pair of shoes"). So the theoretical maximum per node would be 35GB/sec write and 70GB/sec read which I will never achieve, but also the 2x25GbE network should not be saturated immediately either. I've done some fio benchmarks of the NVMEs and get ~2GB/sec write performance when run like this for NP=16 threads. I have attached a copy of the output. ``` # fio --filename=/dev/nvme0n1 --direct=1 --fsync=1 --rw=write --bs=4k --numjobs=$NP \ --iodepth=1 --runtime=60 --time_based --group_reporting --name=4k-sync-write-$NP ``` I'm running Ceph 16.2.7 deployed via cephadm. Client and server run on Rocky Linux 8, clients currently run kernel 4.18.0-348.7.1.el8_5.x86_64 while the servers run 4.18.0-348.2.1.el8_5.x86_64. I changed the following configuration from their defaults: osd_memory_target osd:16187498659 mds_cache_memory_limit global:12884901888 I created three pools: 3rep 2rep and ec(6,2) and ran the fio benchmark with the rbd backend. Performance degraded with multiple threads, the results for one thread are attached. Shortly. 3-rep WRITE: bw=11.0MiB/s (12.5MB/s), 11.0MiB/s-11.0MiB/s (12.5MB/s-12.5MB/s), io=718MiB (753MB), run=60001-60001msec 2-rep WRITE: bw=11.4MiB/s (11.0MB/s), 11.4MiB/s-11.4MiB/s (11.0MB/s-11.0MB/s), io=686MiB (719MB), run=60001-60001msec ec(6,2) WRITE: bw=5825KiB/s (5965kB/s), 5825KiB/s-5825KiB/s (5965kB/s-5965kB/s), io=341MiB (358MB), run=60001-60001msec I then attempted to run the IO500 benchmark with the easy tests only for now and using stonewalltime=30. I'm currently running 14 MDS with 2 standby and one OSD per NVME. 1 thread on one client node [RESULT] ior-easy-write 1.970705 GiB/s : time 36.122 seconds [INVALID] [RESULT] ior-easy-read 1.604711 GiB/s : time 44.315 seconds 2 threads on 1 client node [RESULT] ior-easy-write 2.381101 GiB/s : time 57.877 seconds [INVALID] [RESULT] ior-easy-read 2.863261 GiB/s : time 48.132 seconds 4 threads on 1 client node [RESULT] ior-easy-write 2.565519 GiB/s : time 74.096 seconds [INVALID] [RESULT] ior-easy-read 4.076592 GiB/s : time 46.630 seconds 10 threads on 1 client node [RESULT] ior-easy-write 2.627818 GiB/s : time 75.594 seconds [INVALID] [RESULT] ior-easy-read 4.628728 GiB/s : time 42.913 seconds 20 threads on 2 client nodes (10 threads each) [RESULT] ior-easy-write 5.075989 GiB/s : time 80.186 seconds [INVALID] [RESULT] ior-easy-read 8.605426 GiB/s : time 47.299 seconds 40 threads on 4 client nodes (10 threads each) [RESULT] ior-easy-write 10.108431 GiB/s : time 81.134 seconds [INVALID] [RESULT] ior-easy-read 10.845139 GiB/s : time 75.460 seconds 80 threads on 8 client nodes (10 threads each) [RESULT] ior-easy-write 10.378105 GiB/s : time 128.358 seconds [INVALID] [RESULT] ior-easy-read 10.898354 GiB/s : time 122.212 seconds So it looks like we can saturate a single client node for writing with ~4 threads already right now. What could good next steps be? I'd try the following in the given order. But maybe I'm missing something basic in terms of settings (sysctl settings are also attached). - I could try to increase the number of OSDs per physical disk and try out 2, 4, 8, or even 16 OSDs per NVME as my fio benchmarks indicate that I even get speedups when going from 8 to 16 threads in fio. - I could switch to using the 2x100GbE only but 10GB/sec does not feel like the network is the bottleneck. - I could try to increase the MDS count but that should only affect the meta data operations at this point, I believe. - Probably it is not worth looking into lazy I/O for the ior-easy-* benchmarks. I could try to tinker around with the BIOS settings some more, in particular in the area of the AMD NUMA domains... but my gut feeling tells me that this influence should be <<10% and I'd like to see a much better improvement. With 80 NVMes disks, I should be limited to 160GB/sec from the disks. The 3-rep pool will need to write everyhing three times so the limit is at most ~53GB/sec (which is above the theoretical bandwidth of the network path). Does anyone else have a similar build for CephFS and can tell me what I can hope for? Naively, I would expect my disks to saturate the network. Also, considering the IO500 entry for Ceph from 2020 [2], I would expect better performance. They got a write bandwidth of 36GB/sec and read bandwidth of 75GB/sec with 10 server nodes and 8 disks each, if I understand correctly, I assume they used 2-rep, though. They used 10 client nodes with 32 threads each... Best wishes, Manuel [1] https://croit.io/blog/ceph-performance-test-and-optimization [2] https://io500.org/submissions/view/82 On Tue, Jul 27, 2021 at 7:21 PM Mark Nelson <mnelson@xxxxxxxxxx> wrote: > Hi Manuel, I will reply inline below. > > On 7/27/21 11:10 AM, Manuel Holtgrewe wrote: > > Hi, > > > > thank you very much for the detailed response. We are in the area of > > life sciences so our work loads are a mixed bag of high-throughput > > computing. I'm seeing the following in our current storage system and > > have some questions connected to this: > > > > 1. All users like to install software with conda, which means I have > > hundreds/thousands of Linux File Hierarchy Structure directories with > > small files but there are not too many files here and these directory > > trees are created once and then only read before they are deleted. > > > So this sounds like a pretty good candidate for ephemeral pinning. The > idea is that when a new directory is created it is pseudorandomly > assigned to an MDS. This works well if you have lots of directories so > work can be spread across MDSes without having to do a bunch of work > figuring out how to split directories and distribute the work on the fly. > > > > 2. Users have many large files that are written sequentially and users > > then perform something like an 80/20% mix of sequential/random access > > reads on them. > > > This generally should be pretty good as long as it's not something like > small unaligned sequential sync writes or something. We were seeing > that kind of pattern with etcd's journal and it we weren't nearly as > fast as something like a local NVMe drive (but I don't many any other > distributed file systems are likely to do that well either). > > > > 3. Other users like to have directory trees with many small files (the > > human genome has about 20k genes and they like to create one file per > > gene). I can probably teach them to create sub directories with the > > first two characters of each file to cut down on these huge directories. > > > So the gist of it is that you probably aren't going to see more than > about 10-20K IOPs per MDS server. IE if you put those 20K files in one > directory with ephemeral pinning you aren't going to get more > performance for that single dataset. If you use dynamic subtree > partitioning you can theoretically do better because cephfs will try to > distribute the work to other MDSes, but in practice this might not work > well, especially if you have a really huge directory. > > > > 3.1 Is there any guidance on what number of entries per directories is > > still OK and when it starts being problematic? > > > So unfortunately it's really complicated. If you are using ephemeral > pinning I suspect it's larger, but everything in the directory will > basically always be served by a single MDS (the benefit of which is that > there's no background work going on to try to move workload around). > With dynamic subtree partitioning it seems to be a function of how many > subtrees you have, how many MDSes, how likely it is to hit lock > contention, how many files, and various other factors. > > > > 3.2 What's the problem with many writes to random files in one directory? > > > I think this was more about lots of writers all writing to files in the > same directory especially when using dynamic subtree partitioning and > having many subtrees causing journaling to slow down on the auth MDS. > > > > 4. Still other users either have large HDF5 files that they like to > > perform random reads within them. > > 5. Still other users like to have many small files and randomly read > > some of them. > > 6. Almost nobody uses MPI and almost nobody writes to the same file at > > the same time. > > > Sounds like a pretty standard distribution of use cases. > > > > > > We would not run the system in a "hyperconverged" way but rather build > > a separate Ceph cluster from them. > > > > If I understand correctly, it looks like CephFS would be a good fit > > and except for problems with directories having (too) many files we > > would be within the comfort zone of CephFS. If I also understand > > correctly, the optimizations that people point to as > > experimental/fringe such as lazy I/O will not be of much help with our > > use case. > > > My personal take is that for standard large read/write workloads cephfs > should do pretty well. I think I was getting something like 60-70GB/s > reads across our test performance cluster (but at least for me I was > limited to about 3GB/s per client when using kernel cephfs, 8GB/s per > client when using libcephfs directly). if you can make good use of > ephemeral pinning you can scale aggregate small random performance > alright (~10-20K IOPS per MDS, I was getting something like ~100-200K > aggregate in my test setup with ephemeral pinning). The cases where the > entire workload is in one directory or where you have many clients all > reading/writing to a single file are where we struggle imho. I saw much > more volatile performance in those tests. > > > > > > What do you mean when you are referring to "power loss protection"? I > > assume that this "only" protects against data corruption and does not > > bring advantages in terms of performance. We're looking at buying > > enterprise grade NVMEs in any case. I just checked and the options we > > are following all have that feature. > > > A side benefit of many power loss protection implementations is that the > drive has enough juice to basically ignore cache flushes and just sync > writes to flash when it's optimal for the drive. IE if you do a sync > write at the block level, the kernel will tell the drive to do something > like an ATA_CMD_FLUSH (or whatever the equiv nvme command is). With > proper PLP, it can just ignore that and keep it in cache because if the > drive loses power it can still sync it to disk after the fact. Without > power loss protection, for the drive to be safe, it actually has to > write the data out to the flash cell. > > > > > > Thank you again and best wishes, > > Manuel > > > > > > On Wed, Jul 21, 2021 at 6:36 PM Mark Nelson <mnelson@xxxxxxxxxx > > <mailto:mnelson@xxxxxxxxxx>> wrote: > > > > Hi Manuel, > > > > > > I was the one that did Red Hat's IO500 CephFS submission. Feel > > free to > > ask any questions you like. Generally speaking I could achieve 3GB/s > > pretty easily per kernel client and up to about 8GB/s per client with > > libcephfs directly (up to the aggregate cluster limits assuming > > enough > > concurrency). Metadata is trickier. The fastest option is if you > > have > > files spread across directories that you can manually pin > > round-robin to > > MDSes, though you can do somewhat well with ephemeral pinning too > > as a > > more automatic option. If you have lots of clients dealing with > > lots of > > files in a single directory, that's where you revert to dynamic > > subtree > > partitioning which tends to be quite a bit slower (though at least > > some > > of this is due to journaling overhead on the auth MDS). That's > > especially true if you have a significant number of active/active MDS > > servers (say 10-20+). We tended to consistently do very well with > > the > > "easy" IO500 tests and struggled more with the "hard" tests. > > Otherwise > > most of the standard Ceph caveats apply. Replication eats into write > > performance, scrub/deep scrub can impact performance, choosing the > > right > > NVMe drive with power less protection and low overhead is > > important, etc. > > > > > > Probably the most important questions you should be asking > > yourself is > > how you intend to use the storage, what do you need out of it, and > > what > > you need to do to get there. Ceph has a lot of advantages regarding > > replication, self-healing, and consistency and it's quite fast for > > some > > workloads given those advantages. There are some workloads though > > (say > > unaligned small writes from hundreds of clients to random files in a > > single directory) that potentially could be pretty slow. > > > > > > Mark > > > > > > On 7/21/21 8:54 AM, Manuel Holtgrewe wrote: > > > Dear all, > > > > > > we are looking towards setting up an all-NVME CephFS instance in > our > > > high-performance compute system. Does anyone have any experience > > to share > > > in a HPC setup or an NVME setup mounted by dozens of nodes or more? > > > > > > I've followed the impressive work done at CERN on Youtube but > > otherwise > > > there appear to be only few places using CephFS this way. There > > are a few > > > of CephFS-as-enterprise-storage vendors that sporadically > > advertise CephFS > > > for HPC but it does not appear to be a strategic main target for > > them. > > > > > > I'd be happy to read about your experience/opinion on CephFS for > > HPC. > > > > > > Best wishes, > > > Manuel > > > _______________________________________________ > > > ceph-users mailing list -- ceph-users@xxxxxxx > > <mailto:ceph-users@xxxxxxx> > > > To unsubscribe send an email to ceph-users-leave@xxxxxxx > > <mailto:ceph-users-leave@xxxxxxx> > > > > > > > _______________________________________________ > > ceph-users mailing list -- ceph-users@xxxxxxx > > <mailto:ceph-users@xxxxxxx> > > To unsubscribe send an email to ceph-users-leave@xxxxxxx > > <mailto:ceph-users-leave@xxxxxxx> > > > >
JOBS=1 $ fio --ioengine=rbd --pool=rep_2_pool --rbdname=rbd_rep_2_pool \ --direct=1 --fsync=1 --rw=write --bs=4k --numjobs=$JOBS \ --iodepth=1 --runtime=60 --time_based --group_reporting \ --name=4k-sync-write-$JOBS 4k-sync-write-1: (g=0): rw=write, bs=(R) 4096B-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=rbd, iodepth=1 fio-3.19 Starting 1 process Jobs: 1 (f=1): [W(1)][100.0%][w=12.0MiB/s][w=3079 IOPS][eta 00m:00s] 4k-sync-write-1: (groupid=0, jobs=1): err= 0: pid=111645: Mon Jan 3 16:10:49 2022 write: IOPS=3062, BW=11.0MiB/s (12.5MB/s)(718MiB/60001msec); 0 zone resets slat (nsec): min=1573, max=665007, avg=3513.41, stdev=2236.88 clat (usec): min=4, max=4506, avg=16.01, stdev=11.35 lat (usec): min=11, max=4522, avg=19.53, stdev=11.86 clat percentiles (nsec): | 1.00th=[ 9920], 5.00th=[10432], 10.00th=[10816], 20.00th=[13376], | 30.00th=[14400], 40.00th=[14912], 50.00th=[15296], 60.00th=[15808], | 70.00th=[17024], 80.00th=[18560], 90.00th=[21888], 95.00th=[23168], | 99.00th=[27264], 99.50th=[29824], 99.90th=[39680], 99.95th=[44800], | 99.99th=[90624] bw ( KiB/s): min=11080, max=13800, per=100.00%, avg=12263.66, stdev=507.53, samples=119 iops : min= 2770, max= 3450, avg=3065.91, stdev=126.88, samples=119 lat (usec) : 10=1.40%, 20=83.35%, 50=15.21%, 100=0.02%, 250=0.01% lat (usec) : 750=0.01% lat (msec) : 10=0.01% fsync/fdatasync/sync_file_range: sync (usec): min=10, max=5572, avg=303.77, stdev=70.42 sync percentiles (usec): | 1.00th=[ 255], 5.00th=[ 269], 10.00th=[ 273], 20.00th=[ 281], | 30.00th=[ 289], 40.00th=[ 293], 50.00th=[ 302], 60.00th=[ 306], | 70.00th=[ 314], 80.00th=[ 318], 90.00th=[ 330], 95.00th=[ 343], | 99.00th=[ 383], 99.50th=[ 429], 99.90th=[ 1303], 99.95th=[ 1762], | 99.99th=[ 3490] cpu : usr=2.50%, sys=1.21%, ctx=367577, majf=0, minf=179 IO depths : 1=200.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0% submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0% complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0% issued rwts: total=0,183743,0,183743 short=0,0,0,0 dropped=0,0,0,0 latency : target=0, window=0, percentile=100.00%, depth=1 Run status group 0 (all jobs): WRITE: bw=11.0MiB/s (12.5MB/s), 11.0MiB/s-11.0MiB/s (12.5MB/s-12.5MB/s), io=718MiB (753MB), run=60001-60001msec Disk stats (read/write): sda: ios=245/1872, merge=0/116, ticks=178/4141, in_queue=4320, util=1.43% $ fio --ioengine=rbd --pool=rep_3_pool --rbdname=rbd_rep_3_pool \ --direct=1 --fsync=1 --rw=write --bs=4k --numjobs=$JOBS \ --iodepth=1 --runtime=60 --time_based --group_reporting \ --name=4k-sync-write-$JOBS 4k-sync-write-1: (g=0): rw=write, bs=(R) 4096B-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=rbd, iodepth=1 fio-3.19 Starting 1 process Jobs: 1 (f=1): [W(1)][100.0%][w=11.5MiB/s][w=2956 IOPS][eta 00m:00s]05s] 4k-sync-write-1: (groupid=0, jobs=1): err= 0: pid=112754: Mon Jan 3 16:12:29 2022 write: IOPS=2925, BW=11.4MiB/s (11.0MB/s)(686MiB/60001msec); 0 zone resets slat (nsec): min=1483, max=186961, avg=2952.37, stdev=1516.79 clat (usec): min=4, max=4143, avg=14.12, stdev=10.91 lat (usec): min=10, max=4153, avg=17.07, stdev=11.35 clat percentiles (nsec): | 1.00th=[ 9792], 5.00th=[10176], 10.00th=[10304], 20.00th=[10688], | 30.00th=[11072], 40.00th=[11584], 50.00th=[12352], 60.00th=[13760], | 70.00th=[15680], 80.00th=[17536], 90.00th=[19840], 95.00th=[22656], | 99.00th=[27520], 99.50th=[30592], 99.90th=[38144], 99.95th=[45824], | 99.99th=[95744] bw ( KiB/s): min= 752, max=12840, per=100.00%, avg=11811.36, stdev=1241.08, samples=118 iops : min= 188, max= 3210, avg=2952.84, stdev=310.27, samples=118 lat (usec) : 10=3.07%, 20=87.21%, 50=9.68%, 100=0.03%, 250=0.01% lat (usec) : 750=0.01% lat (msec) : 10=0.01% fsync/fdatasync/sync_file_range: sync (usec): min=10, max=1222.3k, avg=321.68, stdev=2918.01 sync percentiles (usec): | 1.00th=[ 265], 5.00th=[ 277], 10.00th=[ 285], 20.00th=[ 293], | 30.00th=[ 302], 40.00th=[ 306], 50.00th=[ 310], 60.00th=[ 318], | 70.00th=[ 322], 80.00th=[ 330], 90.00th=[ 338], 95.00th=[ 355], | 99.00th=[ 408], 99.50th=[ 465], 99.90th=[ 1450], 99.95th=[ 1795], | 99.99th=[ 3163] cpu : usr=2.11%, sys=1.20%, ctx=351139, majf=0, minf=204 IO depths : 1=200.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0% submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0% complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0% issued rwts: total=0,175513,0,175513 short=0,0,0,0 dropped=0,0,0,0 latency : target=0, window=0, percentile=100.00%, depth=1 Run status group 0 (all jobs): WRITE: bw=11.4MiB/s (11.0MB/s), 11.4MiB/s-11.4MiB/s (11.0MB/s-11.0MB/s), io=686MiB (719MB), run=60001-60001msec Disk stats (read/write): sda: ios=235/2152, merge=0/109, ticks=323/12076, in_queue=12398, util=2.32% $ fio --ioengine=rbd --pool=rep_3_pool --rbdname=rbd_ec_6_2_pool \ --direct=1 --fsync=1 --rw=write --bs=4k --numjobs=$JOBS \ --iodepth=1 --runtime=60 --time_based --group_reporting \ --name=4k-sync-write-$JOBS 4k-sync-write-1: (g=0): rw=write, bs=(R) 4096B-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=rbd, iodepth=1 fio-3.19 Starting 1 process Jobs: 1 (f=1): [W(1)][100.0%][w=5822KiB/s][w=1455 IOPS][eta 00m:00s] 4k-sync-write-1: (groupid=0, jobs=1): err= 0: pid=122175: Mon Jan 3 16:27:05 2022 write: IOPS=1456, BW=5825KiB/s (5965kB/s)(341MiB/60001msec); 0 zone resets slat (nsec): min=1614, max=247645, avg=2833.16, stdev=1445.15 clat (usec): min=7, max=3805, avg=14.75, stdev=13.54 lat (usec): min=11, max=3816, avg=17.59, stdev=13.76 clat percentiles (nsec): | 1.00th=[10176], 5.00th=[10432], 10.00th=[10816], 20.00th=[11200], | 30.00th=[11584], 40.00th=[12352], 50.00th=[13760], 60.00th=[15040], | 70.00th=[16064], 80.00th=[17792], 90.00th=[20096], 95.00th=[22656], | 99.00th=[28032], 99.50th=[30080], 99.90th=[37120], 99.95th=[41728], | 99.99th=[61696] bw ( KiB/s): min= 5152, max= 6624, per=100.00%, avg=5831.98, stdev=256.18, samples=119 iops : min= 1288, max= 1656, avg=1457.99, stdev=64.04, samples=119 lat (usec) : 10=0.40%, 20=89.65%, 50=9.94%, 100=0.02%, 250=0.01% lat (usec) : 500=0.01% lat (msec) : 4=0.01% fsync/fdatasync/sync_file_range: sync (usec): min=11, max=5839, avg=666.02, stdev=125.75 sync percentiles (usec): | 1.00th=[ 416], 5.00th=[ 461], 10.00th=[ 494], 20.00th=[ 611], | 30.00th=[ 652], 40.00th=[ 668], 50.00th=[ 685], 60.00th=[ 693], | 70.00th=[ 709], 80.00th=[ 725], 90.00th=[ 758], 95.00th=[ 791], | 99.00th=[ 922], 99.50th=[ 1106], 99.90th=[ 2114], 99.95th=[ 2343], | 99.99th=[ 2999] cpu : usr=1.16%, sys=0.48%, ctx=174819, majf=0, minf=66 IO depths : 1=200.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0% submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0% complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0% issued rwts: total=0,87376,0,87376 short=0,0,0,0 dropped=0,0,0,0 latency : target=0, window=0, percentile=100.00%, depth=1 Run status group 0 (all jobs): WRITE: bw=5825KiB/s (5965kB/s), 5825KiB/s-5825KiB/s (5965kB/s-5965kB/s), io=341MiB (358MB), run=60001-60001msec Disk stats (read/write): sda: ios=235/1473, merge=0/109, ticks=169/289, in_queue=459, util=0.74%
abi.vsyscall32 = 1 crypto.fips_enabled = 0 debug.exception-trace = 1 debug.kprobes-optimization = 1 dev.cdrom.autoclose = 1 dev.cdrom.autoeject = 0 dev.cdrom.check_media = 0 dev.cdrom.debug = 0 dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17 dev.cdrom.info = dev.cdrom.info = drive name: dev.cdrom.info = drive speed: dev.cdrom.info = drive # of slots: dev.cdrom.info = Can close tray: dev.cdrom.info = Can open tray: dev.cdrom.info = Can lock tray: dev.cdrom.info = Can change speed: dev.cdrom.info = Can select disk: dev.cdrom.info = Can read multisession: dev.cdrom.info = Can read MCN: dev.cdrom.info = Reports media changed: dev.cdrom.info = Can play audio: dev.cdrom.info = Can write CD-R: dev.cdrom.info = Can write CD-RW: dev.cdrom.info = Can read DVD: dev.cdrom.info = Can write DVD-R: dev.cdrom.info = Can write DVD-RAM: dev.cdrom.info = Can read MRW: dev.cdrom.info = Can write MRW: dev.cdrom.info = Can write RAM: dev.cdrom.info = dev.cdrom.info = dev.cdrom.lock = 1 dev.hpet.max-user-freq = 64 dev.mac_hid.mouse_button2_keycode = 97 dev.mac_hid.mouse_button3_keycode = 100 dev.mac_hid.mouse_button_emulation = 0 dev.raid.speed_limit_max = 200000 dev.raid.speed_limit_min = 1000 dev.scsi.logging_level = 0 fs.aio-max-nr = 1048576 fs.aio-nr = 20480 fs.binfmt_misc.status = enabled fs.dentry-state = 140103 80267 45 0 48226 0 fs.dir-notify-enable = 1 fs.epoll.max_user_watches = 53942210 fs.file-max = 26305277 fs.file-nr = 8576 0 26305277 fs.inode-nr = 95958 4278 fs.inode-state = 95958 4278 0 0 0 0 0 fs.inotify.max_queued_events = 16384 fs.inotify.max_user_instances = 128 fs.inotify.max_user_watches = 1048576 fs.lease-break-time = 45 fs.leases-enable = 1 fs.mount-max = 100000 fs.mqueue.msg_default = 10 fs.mqueue.msg_max = 10 fs.mqueue.msgsize_default = 8192 fs.mqueue.msgsize_max = 8192 fs.mqueue.queues_max = 256 fs.nr_open = 1048576 fs.overflowgid = 65534 fs.overflowuid = 65534 fs.pipe-max-size = 1048576 fs.pipe-user-pages-hard = 0 fs.pipe-user-pages-soft = 16384 fs.protected_fifos = 0 fs.protected_hardlinks = 1 fs.protected_regular = 0 fs.protected_symlinks = 1 fs.quota.allocated_dquots = 0 fs.quota.cache_hits = 0 fs.quota.drops = 0 fs.quota.free_dquots = 0 fs.quota.lookups = 0 fs.quota.reads = 0 fs.quota.syncs = 0 fs.quota.warnings = 1 fs.quota.writes = 0 fs.suid_dumpable = 0 fs.xfs.error_level = 3 fs.xfs.filestream_centisecs = 3000 fs.xfs.inherit_noatime = 1 fs.xfs.inherit_nodefrag = 1 fs.xfs.inherit_nodump = 1 fs.xfs.inherit_nosymlinks = 0 fs.xfs.inherit_sync = 1 fs.xfs.irix_sgid_inherit = 0 fs.xfs.irix_symlink_mode = 0 fs.xfs.panic_mask = 0 fs.xfs.rotorstep = 1 fs.xfs.speculative_cow_prealloc_lifetime = 1800 fs.xfs.speculative_prealloc_lifetime = 300 fs.xfs.stats_clear = 0 fs.xfs.xfssyncd_centisecs = 3000 kernel.acct = 4 2 30 kernel.acpi_video_flags = 0 kernel.auto_msgmni = 0 kernel.bootloader_type = 6 kernel.bootloader_version = 38 kernel.bpf_stats_enabled = 0 kernel.cad_pid = 1 kernel.cap_last_cap = 40 kernel.core_pattern = |/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h %e kernel.core_pipe_limit = 16 kernel.core_uses_pid = 1 kernel.ctrl-alt-del = 0 kernel.dmesg_restrict = 0 kernel.domainname = (none) kernel.firmware_config.force_sysfs_fallback = 0 kernel.firmware_config.ignore_sysfs_fallback = 0 kernel.ftrace_dump_on_oops = 0 kernel.ftrace_enabled = 1 kernel.hardlockup_all_cpu_backtrace = 0 kernel.hardlockup_panic = 1 kernel.hostname = ceph-1-1 kernel.hung_task_check_count = 4194304 kernel.hung_task_panic = 0 kernel.hung_task_timeout_secs = 120 kernel.hung_task_warnings = 10 kernel.io_delay_type = 0 kernel.kexec_load_disabled = 0 kernel.keys.gc_delay = 300 kernel.keys.maxbytes = 20000 kernel.keys.maxkeys = 200 kernel.keys.persistent_keyring_expiry = 259200 kernel.keys.root_maxbytes = 25000000 kernel.keys.root_maxkeys = 1000000 kernel.kptr_restrict = 1 kernel.max_lock_depth = 1024 kernel.modprobe = /sbin/modprobe kernel.modules_disabled = 0 kernel.msg_next_id = -1 kernel.msgmax = 8192 kernel.msgmnb = 16384 kernel.msgmni = 32000 kernel.ngroups_max = 65536 kernel.nmi_watchdog = 1 kernel.ns_last_pid = 1372929 kernel.numa_balancing = 1 kernel.numa_balancing_scan_delay_ms = 1000 kernel.numa_balancing_scan_period_max_ms = 60000 kernel.numa_balancing_scan_period_min_ms = 1000 kernel.numa_balancing_scan_size_mb = 256 kernel.osrelease = 4.18.0-348.2.1.el8_5.x86_64 kernel.ostype = Linux kernel.overflowgid = 65534 kernel.overflowuid = 65534 kernel.panic = 0 kernel.panic_on_io_nmi = 0 kernel.panic_on_oops = 1 kernel.panic_on_rcu_stall = 0 kernel.panic_on_unrecovered_nmi = 0 kernel.panic_on_warn = 0 kernel.panic_print = 0 kernel.perf_cpu_time_max_percent = 25 kernel.perf_event_max_contexts_per_stack = 8 kernel.perf_event_max_sample_rate = 100000 kernel.perf_event_max_stack = 127 kernel.perf_event_mlock_kb = 516 kernel.perf_event_paranoid = 2 kernel.pid_max = 4194303 kernel.poweroff_cmd = /sbin/poweroff kernel.print-fatal-signals = 0 kernel.printk = 7 4 1 7 kernel.printk_delay = 0 kernel.printk_devkmsg = ratelimit kernel.printk_ratelimit = 5 kernel.printk_ratelimit_burst = 10 kernel.pty.max = 4096 kernel.pty.nr = 2 kernel.pty.reserve = 1024 kernel.random.boot_id = 2bacc962-2ca2-4611-8206-496cd6c6e7ad kernel.random.entropy_avail = 4032 kernel.random.poolsize = 4096 kernel.random.read_wakeup_threshold = 64 kernel.random.urandom_min_reseed_secs = 60 kernel.random.uuid = 63317dd8-627e-4622-bbc2-a969749598d3 kernel.random.write_wakeup_threshold = 3072 kernel.randomize_va_space = 2 kernel.real-root-dev = 0 kernel.rh_features = kernel.sched_autogroup_enabled = 0 kernel.sched_cfs_bandwidth_slice_us = 5000 kernel.sched_child_runs_first = 0 kernel.sched_deadline_period_max_us = 4194304 kernel.sched_deadline_period_min_us = 100 kernel.sched_domain.cpu0.domain0.busy_factor = 16 kernel.sched_domain.cpu0.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu0.domain0.flags = 4783 kernel.sched_domain.cpu0.domain0.imbalance_pct = 110 kernel.sched_domain.cpu0.domain0.max_interval = 4 kernel.sched_domain.cpu0.domain0.max_newidle_lb_cost = 3607 kernel.sched_domain.cpu0.domain0.min_interval = 2 kernel.sched_domain.cpu0.domain0.name = SMT kernel.sched_domain.cpu0.domain1.busy_factor = 16 kernel.sched_domain.cpu0.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu0.domain1.flags = 4655 kernel.sched_domain.cpu0.domain1.imbalance_pct = 117 kernel.sched_domain.cpu0.domain1.max_interval = 24 kernel.sched_domain.cpu0.domain1.max_newidle_lb_cost = 16485 kernel.sched_domain.cpu0.domain1.min_interval = 12 kernel.sched_domain.cpu0.domain1.name = MC kernel.sched_domain.cpu0.domain2.busy_factor = 16 kernel.sched_domain.cpu0.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu0.domain2.flags = 25647 kernel.sched_domain.cpu0.domain2.imbalance_pct = 117 kernel.sched_domain.cpu0.domain2.max_interval = 96 kernel.sched_domain.cpu0.domain2.max_newidle_lb_cost = 52240 kernel.sched_domain.cpu0.domain2.min_interval = 48 kernel.sched_domain.cpu0.domain2.name = NUMA kernel.sched_domain.cpu1.domain0.busy_factor = 16 kernel.sched_domain.cpu1.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu1.domain0.flags = 4783 kernel.sched_domain.cpu1.domain0.imbalance_pct = 110 kernel.sched_domain.cpu1.domain0.max_interval = 4 kernel.sched_domain.cpu1.domain0.max_newidle_lb_cost = 4582 kernel.sched_domain.cpu1.domain0.min_interval = 2 kernel.sched_domain.cpu1.domain0.name = SMT kernel.sched_domain.cpu1.domain1.busy_factor = 16 kernel.sched_domain.cpu1.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu1.domain1.flags = 4655 kernel.sched_domain.cpu1.domain1.imbalance_pct = 117 kernel.sched_domain.cpu1.domain1.max_interval = 24 kernel.sched_domain.cpu1.domain1.max_newidle_lb_cost = 19774 kernel.sched_domain.cpu1.domain1.min_interval = 12 kernel.sched_domain.cpu1.domain1.name = MC kernel.sched_domain.cpu1.domain2.busy_factor = 16 kernel.sched_domain.cpu1.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu1.domain2.flags = 25647 kernel.sched_domain.cpu1.domain2.imbalance_pct = 117 kernel.sched_domain.cpu1.domain2.max_interval = 96 kernel.sched_domain.cpu1.domain2.max_newidle_lb_cost = 86791 kernel.sched_domain.cpu1.domain2.min_interval = 48 kernel.sched_domain.cpu1.domain2.name = NUMA kernel.sched_domain.cpu10.domain0.busy_factor = 16 kernel.sched_domain.cpu10.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu10.domain0.flags = 4783 kernel.sched_domain.cpu10.domain0.imbalance_pct = 110 kernel.sched_domain.cpu10.domain0.max_interval = 4 kernel.sched_domain.cpu10.domain0.max_newidle_lb_cost = 3084 kernel.sched_domain.cpu10.domain0.min_interval = 2 kernel.sched_domain.cpu10.domain0.name = SMT kernel.sched_domain.cpu10.domain1.busy_factor = 16 kernel.sched_domain.cpu10.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu10.domain1.flags = 4655 kernel.sched_domain.cpu10.domain1.imbalance_pct = 117 kernel.sched_domain.cpu10.domain1.max_interval = 24 kernel.sched_domain.cpu10.domain1.max_newidle_lb_cost = 13576 kernel.sched_domain.cpu10.domain1.min_interval = 12 kernel.sched_domain.cpu10.domain1.name = MC kernel.sched_domain.cpu10.domain2.busy_factor = 16 kernel.sched_domain.cpu10.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu10.domain2.flags = 25647 kernel.sched_domain.cpu10.domain2.imbalance_pct = 117 kernel.sched_domain.cpu10.domain2.max_interval = 96 kernel.sched_domain.cpu10.domain2.max_newidle_lb_cost = 62048 kernel.sched_domain.cpu10.domain2.min_interval = 48 kernel.sched_domain.cpu10.domain2.name = NUMA kernel.sched_domain.cpu11.domain0.busy_factor = 16 kernel.sched_domain.cpu11.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu11.domain0.flags = 4783 kernel.sched_domain.cpu11.domain0.imbalance_pct = 110 kernel.sched_domain.cpu11.domain0.max_interval = 4 kernel.sched_domain.cpu11.domain0.max_newidle_lb_cost = 3224 kernel.sched_domain.cpu11.domain0.min_interval = 2 kernel.sched_domain.cpu11.domain0.name = SMT kernel.sched_domain.cpu11.domain1.busy_factor = 16 kernel.sched_domain.cpu11.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu11.domain1.flags = 4655 kernel.sched_domain.cpu11.domain1.imbalance_pct = 117 kernel.sched_domain.cpu11.domain1.max_interval = 24 kernel.sched_domain.cpu11.domain1.max_newidle_lb_cost = 15773 kernel.sched_domain.cpu11.domain1.min_interval = 12 kernel.sched_domain.cpu11.domain1.name = MC kernel.sched_domain.cpu11.domain2.busy_factor = 16 kernel.sched_domain.cpu11.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu11.domain2.flags = 25647 kernel.sched_domain.cpu11.domain2.imbalance_pct = 117 kernel.sched_domain.cpu11.domain2.max_interval = 96 kernel.sched_domain.cpu11.domain2.max_newidle_lb_cost = 79569 kernel.sched_domain.cpu11.domain2.min_interval = 48 kernel.sched_domain.cpu11.domain2.name = NUMA kernel.sched_domain.cpu12.domain0.busy_factor = 16 kernel.sched_domain.cpu12.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu12.domain0.flags = 4783 kernel.sched_domain.cpu12.domain0.imbalance_pct = 110 kernel.sched_domain.cpu12.domain0.max_interval = 4 kernel.sched_domain.cpu12.domain0.max_newidle_lb_cost = 3100 kernel.sched_domain.cpu12.domain0.min_interval = 2 kernel.sched_domain.cpu12.domain0.name = SMT kernel.sched_domain.cpu12.domain1.busy_factor = 16 kernel.sched_domain.cpu12.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu12.domain1.flags = 4655 kernel.sched_domain.cpu12.domain1.imbalance_pct = 117 kernel.sched_domain.cpu12.domain1.max_interval = 24 kernel.sched_domain.cpu12.domain1.max_newidle_lb_cost = 20079 kernel.sched_domain.cpu12.domain1.min_interval = 12 kernel.sched_domain.cpu12.domain1.name = MC kernel.sched_domain.cpu12.domain2.busy_factor = 16 kernel.sched_domain.cpu12.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu12.domain2.flags = 25647 kernel.sched_domain.cpu12.domain2.imbalance_pct = 117 kernel.sched_domain.cpu12.domain2.max_interval = 96 kernel.sched_domain.cpu12.domain2.max_newidle_lb_cost = 67596 kernel.sched_domain.cpu12.domain2.min_interval = 48 kernel.sched_domain.cpu12.domain2.name = NUMA kernel.sched_domain.cpu13.domain0.busy_factor = 16 kernel.sched_domain.cpu13.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu13.domain0.flags = 4783 kernel.sched_domain.cpu13.domain0.imbalance_pct = 110 kernel.sched_domain.cpu13.domain0.max_interval = 4 kernel.sched_domain.cpu13.domain0.max_newidle_lb_cost = 3890 kernel.sched_domain.cpu13.domain0.min_interval = 2 kernel.sched_domain.cpu13.domain0.name = SMT kernel.sched_domain.cpu13.domain1.busy_factor = 16 kernel.sched_domain.cpu13.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu13.domain1.flags = 4655 kernel.sched_domain.cpu13.domain1.imbalance_pct = 117 kernel.sched_domain.cpu13.domain1.max_interval = 24 kernel.sched_domain.cpu13.domain1.max_newidle_lb_cost = 15362 kernel.sched_domain.cpu13.domain1.min_interval = 12 kernel.sched_domain.cpu13.domain1.name = MC kernel.sched_domain.cpu13.domain2.busy_factor = 16 kernel.sched_domain.cpu13.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu13.domain2.flags = 25647 kernel.sched_domain.cpu13.domain2.imbalance_pct = 117 kernel.sched_domain.cpu13.domain2.max_interval = 96 kernel.sched_domain.cpu13.domain2.max_newidle_lb_cost = 64802 kernel.sched_domain.cpu13.domain2.min_interval = 48 kernel.sched_domain.cpu13.domain2.name = NUMA kernel.sched_domain.cpu14.domain0.busy_factor = 16 kernel.sched_domain.cpu14.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu14.domain0.flags = 4783 kernel.sched_domain.cpu14.domain0.imbalance_pct = 110 kernel.sched_domain.cpu14.domain0.max_interval = 4 kernel.sched_domain.cpu14.domain0.max_newidle_lb_cost = 5874 kernel.sched_domain.cpu14.domain0.min_interval = 2 kernel.sched_domain.cpu14.domain0.name = SMT kernel.sched_domain.cpu14.domain1.busy_factor = 16 kernel.sched_domain.cpu14.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu14.domain1.flags = 4655 kernel.sched_domain.cpu14.domain1.imbalance_pct = 117 kernel.sched_domain.cpu14.domain1.max_interval = 24 kernel.sched_domain.cpu14.domain1.max_newidle_lb_cost = 16953 kernel.sched_domain.cpu14.domain1.min_interval = 12 kernel.sched_domain.cpu14.domain1.name = MC kernel.sched_domain.cpu14.domain2.busy_factor = 16 kernel.sched_domain.cpu14.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu14.domain2.flags = 25647 kernel.sched_domain.cpu14.domain2.imbalance_pct = 117 kernel.sched_domain.cpu14.domain2.max_interval = 96 kernel.sched_domain.cpu14.domain2.max_newidle_lb_cost = 65022 kernel.sched_domain.cpu14.domain2.min_interval = 48 kernel.sched_domain.cpu14.domain2.name = NUMA kernel.sched_domain.cpu15.domain0.busy_factor = 16 kernel.sched_domain.cpu15.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu15.domain0.flags = 4783 kernel.sched_domain.cpu15.domain0.imbalance_pct = 110 kernel.sched_domain.cpu15.domain0.max_interval = 4 kernel.sched_domain.cpu15.domain0.max_newidle_lb_cost = 2729 kernel.sched_domain.cpu15.domain0.min_interval = 2 kernel.sched_domain.cpu15.domain0.name = SMT kernel.sched_domain.cpu15.domain1.busy_factor = 16 kernel.sched_domain.cpu15.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu15.domain1.flags = 4655 kernel.sched_domain.cpu15.domain1.imbalance_pct = 117 kernel.sched_domain.cpu15.domain1.max_interval = 24 kernel.sched_domain.cpu15.domain1.max_newidle_lb_cost = 12509 kernel.sched_domain.cpu15.domain1.min_interval = 12 kernel.sched_domain.cpu15.domain1.name = MC kernel.sched_domain.cpu15.domain2.busy_factor = 16 kernel.sched_domain.cpu15.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu15.domain2.flags = 25647 kernel.sched_domain.cpu15.domain2.imbalance_pct = 117 kernel.sched_domain.cpu15.domain2.max_interval = 96 kernel.sched_domain.cpu15.domain2.max_newidle_lb_cost = 60814 kernel.sched_domain.cpu15.domain2.min_interval = 48 kernel.sched_domain.cpu15.domain2.name = NUMA kernel.sched_domain.cpu16.domain0.busy_factor = 16 kernel.sched_domain.cpu16.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu16.domain0.flags = 4783 kernel.sched_domain.cpu16.domain0.imbalance_pct = 110 kernel.sched_domain.cpu16.domain0.max_interval = 4 kernel.sched_domain.cpu16.domain0.max_newidle_lb_cost = 4314 kernel.sched_domain.cpu16.domain0.min_interval = 2 kernel.sched_domain.cpu16.domain0.name = SMT kernel.sched_domain.cpu16.domain1.busy_factor = 16 kernel.sched_domain.cpu16.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu16.domain1.flags = 4655 kernel.sched_domain.cpu16.domain1.imbalance_pct = 117 kernel.sched_domain.cpu16.domain1.max_interval = 24 kernel.sched_domain.cpu16.domain1.max_newidle_lb_cost = 15633 kernel.sched_domain.cpu16.domain1.min_interval = 12 kernel.sched_domain.cpu16.domain1.name = MC kernel.sched_domain.cpu16.domain2.busy_factor = 16 kernel.sched_domain.cpu16.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu16.domain2.flags = 25647 kernel.sched_domain.cpu16.domain2.imbalance_pct = 117 kernel.sched_domain.cpu16.domain2.max_interval = 96 kernel.sched_domain.cpu16.domain2.max_newidle_lb_cost = 71867 kernel.sched_domain.cpu16.domain2.min_interval = 48 kernel.sched_domain.cpu16.domain2.name = NUMA kernel.sched_domain.cpu17.domain0.busy_factor = 16 kernel.sched_domain.cpu17.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu17.domain0.flags = 4783 kernel.sched_domain.cpu17.domain0.imbalance_pct = 110 kernel.sched_domain.cpu17.domain0.max_interval = 4 kernel.sched_domain.cpu17.domain0.max_newidle_lb_cost = 4791 kernel.sched_domain.cpu17.domain0.min_interval = 2 kernel.sched_domain.cpu17.domain0.name = SMT kernel.sched_domain.cpu17.domain1.busy_factor = 16 kernel.sched_domain.cpu17.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu17.domain1.flags = 4655 kernel.sched_domain.cpu17.domain1.imbalance_pct = 117 kernel.sched_domain.cpu17.domain1.max_interval = 24 kernel.sched_domain.cpu17.domain1.max_newidle_lb_cost = 28460 kernel.sched_domain.cpu17.domain1.min_interval = 12 kernel.sched_domain.cpu17.domain1.name = MC kernel.sched_domain.cpu17.domain2.busy_factor = 16 kernel.sched_domain.cpu17.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu17.domain2.flags = 25647 kernel.sched_domain.cpu17.domain2.imbalance_pct = 117 kernel.sched_domain.cpu17.domain2.max_interval = 96 kernel.sched_domain.cpu17.domain2.max_newidle_lb_cost = 92454 kernel.sched_domain.cpu17.domain2.min_interval = 48 kernel.sched_domain.cpu17.domain2.name = NUMA kernel.sched_domain.cpu18.domain0.busy_factor = 16 kernel.sched_domain.cpu18.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu18.domain0.flags = 4783 kernel.sched_domain.cpu18.domain0.imbalance_pct = 110 kernel.sched_domain.cpu18.domain0.max_interval = 4 kernel.sched_domain.cpu18.domain0.max_newidle_lb_cost = 3933 kernel.sched_domain.cpu18.domain0.min_interval = 2 kernel.sched_domain.cpu18.domain0.name = SMT kernel.sched_domain.cpu18.domain1.busy_factor = 16 kernel.sched_domain.cpu18.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu18.domain1.flags = 4655 kernel.sched_domain.cpu18.domain1.imbalance_pct = 117 kernel.sched_domain.cpu18.domain1.max_interval = 24 kernel.sched_domain.cpu18.domain1.max_newidle_lb_cost = 20628 kernel.sched_domain.cpu18.domain1.min_interval = 12 kernel.sched_domain.cpu18.domain1.name = MC kernel.sched_domain.cpu18.domain2.busy_factor = 16 kernel.sched_domain.cpu18.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu18.domain2.flags = 25647 kernel.sched_domain.cpu18.domain2.imbalance_pct = 117 kernel.sched_domain.cpu18.domain2.max_interval = 96 kernel.sched_domain.cpu18.domain2.max_newidle_lb_cost = 64797 kernel.sched_domain.cpu18.domain2.min_interval = 48 kernel.sched_domain.cpu18.domain2.name = NUMA kernel.sched_domain.cpu19.domain0.busy_factor = 16 kernel.sched_domain.cpu19.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu19.domain0.flags = 4783 kernel.sched_domain.cpu19.domain0.imbalance_pct = 110 kernel.sched_domain.cpu19.domain0.max_interval = 4 kernel.sched_domain.cpu19.domain0.max_newidle_lb_cost = 3123 kernel.sched_domain.cpu19.domain0.min_interval = 2 kernel.sched_domain.cpu19.domain0.name = SMT kernel.sched_domain.cpu19.domain1.busy_factor = 16 kernel.sched_domain.cpu19.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu19.domain1.flags = 4655 kernel.sched_domain.cpu19.domain1.imbalance_pct = 117 kernel.sched_domain.cpu19.domain1.max_interval = 24 kernel.sched_domain.cpu19.domain1.max_newidle_lb_cost = 15027 kernel.sched_domain.cpu19.domain1.min_interval = 12 kernel.sched_domain.cpu19.domain1.name = MC kernel.sched_domain.cpu19.domain2.busy_factor = 16 kernel.sched_domain.cpu19.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu19.domain2.flags = 25647 kernel.sched_domain.cpu19.domain2.imbalance_pct = 117 kernel.sched_domain.cpu19.domain2.max_interval = 96 kernel.sched_domain.cpu19.domain2.max_newidle_lb_cost = 79716 kernel.sched_domain.cpu19.domain2.min_interval = 48 kernel.sched_domain.cpu19.domain2.name = NUMA kernel.sched_domain.cpu2.domain0.busy_factor = 16 kernel.sched_domain.cpu2.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu2.domain0.flags = 4783 kernel.sched_domain.cpu2.domain0.imbalance_pct = 110 kernel.sched_domain.cpu2.domain0.max_interval = 4 kernel.sched_domain.cpu2.domain0.max_newidle_lb_cost = 3373 kernel.sched_domain.cpu2.domain0.min_interval = 2 kernel.sched_domain.cpu2.domain0.name = SMT kernel.sched_domain.cpu2.domain1.busy_factor = 16 kernel.sched_domain.cpu2.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu2.domain1.flags = 4655 kernel.sched_domain.cpu2.domain1.imbalance_pct = 117 kernel.sched_domain.cpu2.domain1.max_interval = 24 kernel.sched_domain.cpu2.domain1.max_newidle_lb_cost = 16942 kernel.sched_domain.cpu2.domain1.min_interval = 12 kernel.sched_domain.cpu2.domain1.name = MC kernel.sched_domain.cpu2.domain2.busy_factor = 16 kernel.sched_domain.cpu2.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu2.domain2.flags = 25647 kernel.sched_domain.cpu2.domain2.imbalance_pct = 117 kernel.sched_domain.cpu2.domain2.max_interval = 96 kernel.sched_domain.cpu2.domain2.max_newidle_lb_cost = 47091 kernel.sched_domain.cpu2.domain2.min_interval = 48 kernel.sched_domain.cpu2.domain2.name = NUMA kernel.sched_domain.cpu20.domain0.busy_factor = 16 kernel.sched_domain.cpu20.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu20.domain0.flags = 4783 kernel.sched_domain.cpu20.domain0.imbalance_pct = 110 kernel.sched_domain.cpu20.domain0.max_interval = 4 kernel.sched_domain.cpu20.domain0.max_newidle_lb_cost = 2690 kernel.sched_domain.cpu20.domain0.min_interval = 2 kernel.sched_domain.cpu20.domain0.name = SMT kernel.sched_domain.cpu20.domain1.busy_factor = 16 kernel.sched_domain.cpu20.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu20.domain1.flags = 4655 kernel.sched_domain.cpu20.domain1.imbalance_pct = 117 kernel.sched_domain.cpu20.domain1.max_interval = 24 kernel.sched_domain.cpu20.domain1.max_newidle_lb_cost = 20771 kernel.sched_domain.cpu20.domain1.min_interval = 12 kernel.sched_domain.cpu20.domain1.name = MC kernel.sched_domain.cpu20.domain2.busy_factor = 16 kernel.sched_domain.cpu20.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu20.domain2.flags = 25647 kernel.sched_domain.cpu20.domain2.imbalance_pct = 117 kernel.sched_domain.cpu20.domain2.max_interval = 96 kernel.sched_domain.cpu20.domain2.max_newidle_lb_cost = 79461 kernel.sched_domain.cpu20.domain2.min_interval = 48 kernel.sched_domain.cpu20.domain2.name = NUMA kernel.sched_domain.cpu21.domain0.busy_factor = 16 kernel.sched_domain.cpu21.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu21.domain0.flags = 4783 kernel.sched_domain.cpu21.domain0.imbalance_pct = 110 kernel.sched_domain.cpu21.domain0.max_interval = 4 kernel.sched_domain.cpu21.domain0.max_newidle_lb_cost = 3560 kernel.sched_domain.cpu21.domain0.min_interval = 2 kernel.sched_domain.cpu21.domain0.name = SMT kernel.sched_domain.cpu21.domain1.busy_factor = 16 kernel.sched_domain.cpu21.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu21.domain1.flags = 4655 kernel.sched_domain.cpu21.domain1.imbalance_pct = 117 kernel.sched_domain.cpu21.domain1.max_interval = 24 kernel.sched_domain.cpu21.domain1.max_newidle_lb_cost = 20084 kernel.sched_domain.cpu21.domain1.min_interval = 12 kernel.sched_domain.cpu21.domain1.name = MC kernel.sched_domain.cpu21.domain2.busy_factor = 16 kernel.sched_domain.cpu21.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu21.domain2.flags = 25647 kernel.sched_domain.cpu21.domain2.imbalance_pct = 117 kernel.sched_domain.cpu21.domain2.max_interval = 96 kernel.sched_domain.cpu21.domain2.max_newidle_lb_cost = 68607 kernel.sched_domain.cpu21.domain2.min_interval = 48 kernel.sched_domain.cpu21.domain2.name = NUMA kernel.sched_domain.cpu22.domain0.busy_factor = 16 kernel.sched_domain.cpu22.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu22.domain0.flags = 4783 kernel.sched_domain.cpu22.domain0.imbalance_pct = 110 kernel.sched_domain.cpu22.domain0.max_interval = 4 kernel.sched_domain.cpu22.domain0.max_newidle_lb_cost = 5266 kernel.sched_domain.cpu22.domain0.min_interval = 2 kernel.sched_domain.cpu22.domain0.name = SMT kernel.sched_domain.cpu22.domain1.busy_factor = 16 kernel.sched_domain.cpu22.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu22.domain1.flags = 4655 kernel.sched_domain.cpu22.domain1.imbalance_pct = 117 kernel.sched_domain.cpu22.domain1.max_interval = 24 kernel.sched_domain.cpu22.domain1.max_newidle_lb_cost = 22388 kernel.sched_domain.cpu22.domain1.min_interval = 12 kernel.sched_domain.cpu22.domain1.name = MC kernel.sched_domain.cpu22.domain2.busy_factor = 16 kernel.sched_domain.cpu22.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu22.domain2.flags = 25647 kernel.sched_domain.cpu22.domain2.imbalance_pct = 117 kernel.sched_domain.cpu22.domain2.max_interval = 96 kernel.sched_domain.cpu22.domain2.max_newidle_lb_cost = 54775 kernel.sched_domain.cpu22.domain2.min_interval = 48 kernel.sched_domain.cpu22.domain2.name = NUMA kernel.sched_domain.cpu23.domain0.busy_factor = 16 kernel.sched_domain.cpu23.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu23.domain0.flags = 4783 kernel.sched_domain.cpu23.domain0.imbalance_pct = 110 kernel.sched_domain.cpu23.domain0.max_interval = 4 kernel.sched_domain.cpu23.domain0.max_newidle_lb_cost = 3449 kernel.sched_domain.cpu23.domain0.min_interval = 2 kernel.sched_domain.cpu23.domain0.name = SMT kernel.sched_domain.cpu23.domain1.busy_factor = 16 kernel.sched_domain.cpu23.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu23.domain1.flags = 4655 kernel.sched_domain.cpu23.domain1.imbalance_pct = 117 kernel.sched_domain.cpu23.domain1.max_interval = 24 kernel.sched_domain.cpu23.domain1.max_newidle_lb_cost = 16134 kernel.sched_domain.cpu23.domain1.min_interval = 12 kernel.sched_domain.cpu23.domain1.name = MC kernel.sched_domain.cpu23.domain2.busy_factor = 16 kernel.sched_domain.cpu23.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu23.domain2.flags = 25647 kernel.sched_domain.cpu23.domain2.imbalance_pct = 117 kernel.sched_domain.cpu23.domain2.max_interval = 96 kernel.sched_domain.cpu23.domain2.max_newidle_lb_cost = 78616 kernel.sched_domain.cpu23.domain2.min_interval = 48 kernel.sched_domain.cpu23.domain2.name = NUMA kernel.sched_domain.cpu24.domain0.busy_factor = 16 kernel.sched_domain.cpu24.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu24.domain0.flags = 4783 kernel.sched_domain.cpu24.domain0.imbalance_pct = 110 kernel.sched_domain.cpu24.domain0.max_interval = 4 kernel.sched_domain.cpu24.domain0.max_newidle_lb_cost = 6383 kernel.sched_domain.cpu24.domain0.min_interval = 2 kernel.sched_domain.cpu24.domain0.name = SMT kernel.sched_domain.cpu24.domain1.busy_factor = 16 kernel.sched_domain.cpu24.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu24.domain1.flags = 4655 kernel.sched_domain.cpu24.domain1.imbalance_pct = 117 kernel.sched_domain.cpu24.domain1.max_interval = 24 kernel.sched_domain.cpu24.domain1.max_newidle_lb_cost = 19637 kernel.sched_domain.cpu24.domain1.min_interval = 12 kernel.sched_domain.cpu24.domain1.name = MC kernel.sched_domain.cpu24.domain2.busy_factor = 16 kernel.sched_domain.cpu24.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu24.domain2.flags = 25647 kernel.sched_domain.cpu24.domain2.imbalance_pct = 117 kernel.sched_domain.cpu24.domain2.max_interval = 96 kernel.sched_domain.cpu24.domain2.max_newidle_lb_cost = 84112 kernel.sched_domain.cpu24.domain2.min_interval = 48 kernel.sched_domain.cpu24.domain2.name = NUMA kernel.sched_domain.cpu25.domain0.busy_factor = 16 kernel.sched_domain.cpu25.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu25.domain0.flags = 4783 kernel.sched_domain.cpu25.domain0.imbalance_pct = 110 kernel.sched_domain.cpu25.domain0.max_interval = 4 kernel.sched_domain.cpu25.domain0.max_newidle_lb_cost = 3756 kernel.sched_domain.cpu25.domain0.min_interval = 2 kernel.sched_domain.cpu25.domain0.name = SMT kernel.sched_domain.cpu25.domain1.busy_factor = 16 kernel.sched_domain.cpu25.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu25.domain1.flags = 4655 kernel.sched_domain.cpu25.domain1.imbalance_pct = 117 kernel.sched_domain.cpu25.domain1.max_interval = 24 kernel.sched_domain.cpu25.domain1.max_newidle_lb_cost = 10983 kernel.sched_domain.cpu25.domain1.min_interval = 12 kernel.sched_domain.cpu25.domain1.name = MC kernel.sched_domain.cpu25.domain2.busy_factor = 16 kernel.sched_domain.cpu25.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu25.domain2.flags = 25647 kernel.sched_domain.cpu25.domain2.imbalance_pct = 117 kernel.sched_domain.cpu25.domain2.max_interval = 96 kernel.sched_domain.cpu25.domain2.max_newidle_lb_cost = 60099 kernel.sched_domain.cpu25.domain2.min_interval = 48 kernel.sched_domain.cpu25.domain2.name = NUMA kernel.sched_domain.cpu26.domain0.busy_factor = 16 kernel.sched_domain.cpu26.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu26.domain0.flags = 4783 kernel.sched_domain.cpu26.domain0.imbalance_pct = 110 kernel.sched_domain.cpu26.domain0.max_interval = 4 kernel.sched_domain.cpu26.domain0.max_newidle_lb_cost = 7295 kernel.sched_domain.cpu26.domain0.min_interval = 2 kernel.sched_domain.cpu26.domain0.name = SMT kernel.sched_domain.cpu26.domain1.busy_factor = 16 kernel.sched_domain.cpu26.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu26.domain1.flags = 4655 kernel.sched_domain.cpu26.domain1.imbalance_pct = 117 kernel.sched_domain.cpu26.domain1.max_interval = 24 kernel.sched_domain.cpu26.domain1.max_newidle_lb_cost = 21101 kernel.sched_domain.cpu26.domain1.min_interval = 12 kernel.sched_domain.cpu26.domain1.name = MC kernel.sched_domain.cpu26.domain2.busy_factor = 16 kernel.sched_domain.cpu26.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu26.domain2.flags = 25647 kernel.sched_domain.cpu26.domain2.imbalance_pct = 117 kernel.sched_domain.cpu26.domain2.max_interval = 96 kernel.sched_domain.cpu26.domain2.max_newidle_lb_cost = 76369 kernel.sched_domain.cpu26.domain2.min_interval = 48 kernel.sched_domain.cpu26.domain2.name = NUMA kernel.sched_domain.cpu27.domain0.busy_factor = 16 kernel.sched_domain.cpu27.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu27.domain0.flags = 4783 kernel.sched_domain.cpu27.domain0.imbalance_pct = 110 kernel.sched_domain.cpu27.domain0.max_interval = 4 kernel.sched_domain.cpu27.domain0.max_newidle_lb_cost = 4530 kernel.sched_domain.cpu27.domain0.min_interval = 2 kernel.sched_domain.cpu27.domain0.name = SMT kernel.sched_domain.cpu27.domain1.busy_factor = 16 kernel.sched_domain.cpu27.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu27.domain1.flags = 4655 kernel.sched_domain.cpu27.domain1.imbalance_pct = 117 kernel.sched_domain.cpu27.domain1.max_interval = 24 kernel.sched_domain.cpu27.domain1.max_newidle_lb_cost = 15209 kernel.sched_domain.cpu27.domain1.min_interval = 12 kernel.sched_domain.cpu27.domain1.name = MC kernel.sched_domain.cpu27.domain2.busy_factor = 16 kernel.sched_domain.cpu27.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu27.domain2.flags = 25647 kernel.sched_domain.cpu27.domain2.imbalance_pct = 117 kernel.sched_domain.cpu27.domain2.max_interval = 96 kernel.sched_domain.cpu27.domain2.max_newidle_lb_cost = 64747 kernel.sched_domain.cpu27.domain2.min_interval = 48 kernel.sched_domain.cpu27.domain2.name = NUMA kernel.sched_domain.cpu28.domain0.busy_factor = 16 kernel.sched_domain.cpu28.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu28.domain0.flags = 4783 kernel.sched_domain.cpu28.domain0.imbalance_pct = 110 kernel.sched_domain.cpu28.domain0.max_interval = 4 kernel.sched_domain.cpu28.domain0.max_newidle_lb_cost = 4833 kernel.sched_domain.cpu28.domain0.min_interval = 2 kernel.sched_domain.cpu28.domain0.name = SMT kernel.sched_domain.cpu28.domain1.busy_factor = 16 kernel.sched_domain.cpu28.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu28.domain1.flags = 4655 kernel.sched_domain.cpu28.domain1.imbalance_pct = 117 kernel.sched_domain.cpu28.domain1.max_interval = 24 kernel.sched_domain.cpu28.domain1.max_newidle_lb_cost = 13122 kernel.sched_domain.cpu28.domain1.min_interval = 12 kernel.sched_domain.cpu28.domain1.name = MC kernel.sched_domain.cpu28.domain2.busy_factor = 16 kernel.sched_domain.cpu28.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu28.domain2.flags = 25647 kernel.sched_domain.cpu28.domain2.imbalance_pct = 117 kernel.sched_domain.cpu28.domain2.max_interval = 96 kernel.sched_domain.cpu28.domain2.max_newidle_lb_cost = 66959 kernel.sched_domain.cpu28.domain2.min_interval = 48 kernel.sched_domain.cpu28.domain2.name = NUMA kernel.sched_domain.cpu29.domain0.busy_factor = 16 kernel.sched_domain.cpu29.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu29.domain0.flags = 4783 kernel.sched_domain.cpu29.domain0.imbalance_pct = 110 kernel.sched_domain.cpu29.domain0.max_interval = 4 kernel.sched_domain.cpu29.domain0.max_newidle_lb_cost = 3673 kernel.sched_domain.cpu29.domain0.min_interval = 2 kernel.sched_domain.cpu29.domain0.name = SMT kernel.sched_domain.cpu29.domain1.busy_factor = 16 kernel.sched_domain.cpu29.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu29.domain1.flags = 4655 kernel.sched_domain.cpu29.domain1.imbalance_pct = 117 kernel.sched_domain.cpu29.domain1.max_interval = 24 kernel.sched_domain.cpu29.domain1.max_newidle_lb_cost = 16958 kernel.sched_domain.cpu29.domain1.min_interval = 12 kernel.sched_domain.cpu29.domain1.name = MC kernel.sched_domain.cpu29.domain2.busy_factor = 16 kernel.sched_domain.cpu29.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu29.domain2.flags = 25647 kernel.sched_domain.cpu29.domain2.imbalance_pct = 117 kernel.sched_domain.cpu29.domain2.max_interval = 96 kernel.sched_domain.cpu29.domain2.max_newidle_lb_cost = 53657 kernel.sched_domain.cpu29.domain2.min_interval = 48 kernel.sched_domain.cpu29.domain2.name = NUMA kernel.sched_domain.cpu3.domain0.busy_factor = 16 kernel.sched_domain.cpu3.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu3.domain0.flags = 4783 kernel.sched_domain.cpu3.domain0.imbalance_pct = 110 kernel.sched_domain.cpu3.domain0.max_interval = 4 kernel.sched_domain.cpu3.domain0.max_newidle_lb_cost = 2310 kernel.sched_domain.cpu3.domain0.min_interval = 2 kernel.sched_domain.cpu3.domain0.name = SMT kernel.sched_domain.cpu3.domain1.busy_factor = 16 kernel.sched_domain.cpu3.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu3.domain1.flags = 4655 kernel.sched_domain.cpu3.domain1.imbalance_pct = 117 kernel.sched_domain.cpu3.domain1.max_interval = 24 kernel.sched_domain.cpu3.domain1.max_newidle_lb_cost = 14646 kernel.sched_domain.cpu3.domain1.min_interval = 12 kernel.sched_domain.cpu3.domain1.name = MC kernel.sched_domain.cpu3.domain2.busy_factor = 16 kernel.sched_domain.cpu3.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu3.domain2.flags = 25647 kernel.sched_domain.cpu3.domain2.imbalance_pct = 117 kernel.sched_domain.cpu3.domain2.max_interval = 96 kernel.sched_domain.cpu3.domain2.max_newidle_lb_cost = 45553 kernel.sched_domain.cpu3.domain2.min_interval = 48 kernel.sched_domain.cpu3.domain2.name = NUMA kernel.sched_domain.cpu30.domain0.busy_factor = 16 kernel.sched_domain.cpu30.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu30.domain0.flags = 4783 kernel.sched_domain.cpu30.domain0.imbalance_pct = 110 kernel.sched_domain.cpu30.domain0.max_interval = 4 kernel.sched_domain.cpu30.domain0.max_newidle_lb_cost = 2740 kernel.sched_domain.cpu30.domain0.min_interval = 2 kernel.sched_domain.cpu30.domain0.name = SMT kernel.sched_domain.cpu30.domain1.busy_factor = 16 kernel.sched_domain.cpu30.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu30.domain1.flags = 4655 kernel.sched_domain.cpu30.domain1.imbalance_pct = 117 kernel.sched_domain.cpu30.domain1.max_interval = 24 kernel.sched_domain.cpu30.domain1.max_newidle_lb_cost = 20518 kernel.sched_domain.cpu30.domain1.min_interval = 12 kernel.sched_domain.cpu30.domain1.name = MC kernel.sched_domain.cpu30.domain2.busy_factor = 16 kernel.sched_domain.cpu30.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu30.domain2.flags = 25647 kernel.sched_domain.cpu30.domain2.imbalance_pct = 117 kernel.sched_domain.cpu30.domain2.max_interval = 96 kernel.sched_domain.cpu30.domain2.max_newidle_lb_cost = 66123 kernel.sched_domain.cpu30.domain2.min_interval = 48 kernel.sched_domain.cpu30.domain2.name = NUMA kernel.sched_domain.cpu31.domain0.busy_factor = 16 kernel.sched_domain.cpu31.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu31.domain0.flags = 4783 kernel.sched_domain.cpu31.domain0.imbalance_pct = 110 kernel.sched_domain.cpu31.domain0.max_interval = 4 kernel.sched_domain.cpu31.domain0.max_newidle_lb_cost = 3925 kernel.sched_domain.cpu31.domain0.min_interval = 2 kernel.sched_domain.cpu31.domain0.name = SMT kernel.sched_domain.cpu31.domain1.busy_factor = 16 kernel.sched_domain.cpu31.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu31.domain1.flags = 4655 kernel.sched_domain.cpu31.domain1.imbalance_pct = 117 kernel.sched_domain.cpu31.domain1.max_interval = 24 kernel.sched_domain.cpu31.domain1.max_newidle_lb_cost = 17697 kernel.sched_domain.cpu31.domain1.min_interval = 12 kernel.sched_domain.cpu31.domain1.name = MC kernel.sched_domain.cpu31.domain2.busy_factor = 16 kernel.sched_domain.cpu31.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu31.domain2.flags = 25647 kernel.sched_domain.cpu31.domain2.imbalance_pct = 117 kernel.sched_domain.cpu31.domain2.max_interval = 96 kernel.sched_domain.cpu31.domain2.max_newidle_lb_cost = 72537 kernel.sched_domain.cpu31.domain2.min_interval = 48 kernel.sched_domain.cpu31.domain2.name = NUMA kernel.sched_domain.cpu32.domain0.busy_factor = 16 kernel.sched_domain.cpu32.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu32.domain0.flags = 4783 kernel.sched_domain.cpu32.domain0.imbalance_pct = 110 kernel.sched_domain.cpu32.domain0.max_interval = 4 kernel.sched_domain.cpu32.domain0.max_newidle_lb_cost = 2961 kernel.sched_domain.cpu32.domain0.min_interval = 2 kernel.sched_domain.cpu32.domain0.name = SMT kernel.sched_domain.cpu32.domain1.busy_factor = 16 kernel.sched_domain.cpu32.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu32.domain1.flags = 4655 kernel.sched_domain.cpu32.domain1.imbalance_pct = 117 kernel.sched_domain.cpu32.domain1.max_interval = 24 kernel.sched_domain.cpu32.domain1.max_newidle_lb_cost = 19826 kernel.sched_domain.cpu32.domain1.min_interval = 12 kernel.sched_domain.cpu32.domain1.name = MC kernel.sched_domain.cpu32.domain2.busy_factor = 16 kernel.sched_domain.cpu32.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu32.domain2.flags = 25647 kernel.sched_domain.cpu32.domain2.imbalance_pct = 117 kernel.sched_domain.cpu32.domain2.max_interval = 96 kernel.sched_domain.cpu32.domain2.max_newidle_lb_cost = 54925 kernel.sched_domain.cpu32.domain2.min_interval = 48 kernel.sched_domain.cpu32.domain2.name = NUMA kernel.sched_domain.cpu33.domain0.busy_factor = 16 kernel.sched_domain.cpu33.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu33.domain0.flags = 4783 kernel.sched_domain.cpu33.domain0.imbalance_pct = 110 kernel.sched_domain.cpu33.domain0.max_interval = 4 kernel.sched_domain.cpu33.domain0.max_newidle_lb_cost = 4132 kernel.sched_domain.cpu33.domain0.min_interval = 2 kernel.sched_domain.cpu33.domain0.name = SMT kernel.sched_domain.cpu33.domain1.busy_factor = 16 kernel.sched_domain.cpu33.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu33.domain1.flags = 4655 kernel.sched_domain.cpu33.domain1.imbalance_pct = 117 kernel.sched_domain.cpu33.domain1.max_interval = 24 kernel.sched_domain.cpu33.domain1.max_newidle_lb_cost = 17483 kernel.sched_domain.cpu33.domain1.min_interval = 12 kernel.sched_domain.cpu33.domain1.name = MC kernel.sched_domain.cpu33.domain2.busy_factor = 16 kernel.sched_domain.cpu33.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu33.domain2.flags = 25647 kernel.sched_domain.cpu33.domain2.imbalance_pct = 117 kernel.sched_domain.cpu33.domain2.max_interval = 96 kernel.sched_domain.cpu33.domain2.max_newidle_lb_cost = 66158 kernel.sched_domain.cpu33.domain2.min_interval = 48 kernel.sched_domain.cpu33.domain2.name = NUMA kernel.sched_domain.cpu34.domain0.busy_factor = 16 kernel.sched_domain.cpu34.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu34.domain0.flags = 4783 kernel.sched_domain.cpu34.domain0.imbalance_pct = 110 kernel.sched_domain.cpu34.domain0.max_interval = 4 kernel.sched_domain.cpu34.domain0.max_newidle_lb_cost = 3667 kernel.sched_domain.cpu34.domain0.min_interval = 2 kernel.sched_domain.cpu34.domain0.name = SMT kernel.sched_domain.cpu34.domain1.busy_factor = 16 kernel.sched_domain.cpu34.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu34.domain1.flags = 4655 kernel.sched_domain.cpu34.domain1.imbalance_pct = 117 kernel.sched_domain.cpu34.domain1.max_interval = 24 kernel.sched_domain.cpu34.domain1.max_newidle_lb_cost = 18167 kernel.sched_domain.cpu34.domain1.min_interval = 12 kernel.sched_domain.cpu34.domain1.name = MC kernel.sched_domain.cpu34.domain2.busy_factor = 16 kernel.sched_domain.cpu34.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu34.domain2.flags = 25647 kernel.sched_domain.cpu34.domain2.imbalance_pct = 117 kernel.sched_domain.cpu34.domain2.max_interval = 96 kernel.sched_domain.cpu34.domain2.max_newidle_lb_cost = 94440 kernel.sched_domain.cpu34.domain2.min_interval = 48 kernel.sched_domain.cpu34.domain2.name = NUMA kernel.sched_domain.cpu35.domain0.busy_factor = 16 kernel.sched_domain.cpu35.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu35.domain0.flags = 4783 kernel.sched_domain.cpu35.domain0.imbalance_pct = 110 kernel.sched_domain.cpu35.domain0.max_interval = 4 kernel.sched_domain.cpu35.domain0.max_newidle_lb_cost = 4500 kernel.sched_domain.cpu35.domain0.min_interval = 2 kernel.sched_domain.cpu35.domain0.name = SMT kernel.sched_domain.cpu35.domain1.busy_factor = 16 kernel.sched_domain.cpu35.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu35.domain1.flags = 4655 kernel.sched_domain.cpu35.domain1.imbalance_pct = 117 kernel.sched_domain.cpu35.domain1.max_interval = 24 kernel.sched_domain.cpu35.domain1.max_newidle_lb_cost = 13430 kernel.sched_domain.cpu35.domain1.min_interval = 12 kernel.sched_domain.cpu35.domain1.name = MC kernel.sched_domain.cpu35.domain2.busy_factor = 16 kernel.sched_domain.cpu35.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu35.domain2.flags = 25647 kernel.sched_domain.cpu35.domain2.imbalance_pct = 117 kernel.sched_domain.cpu35.domain2.max_interval = 96 kernel.sched_domain.cpu35.domain2.max_newidle_lb_cost = 64409 kernel.sched_domain.cpu35.domain2.min_interval = 48 kernel.sched_domain.cpu35.domain2.name = NUMA kernel.sched_domain.cpu36.domain0.busy_factor = 16 kernel.sched_domain.cpu36.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu36.domain0.flags = 4783 kernel.sched_domain.cpu36.domain0.imbalance_pct = 110 kernel.sched_domain.cpu36.domain0.max_interval = 4 kernel.sched_domain.cpu36.domain0.max_newidle_lb_cost = 3662 kernel.sched_domain.cpu36.domain0.min_interval = 2 kernel.sched_domain.cpu36.domain0.name = SMT kernel.sched_domain.cpu36.domain1.busy_factor = 16 kernel.sched_domain.cpu36.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu36.domain1.flags = 4655 kernel.sched_domain.cpu36.domain1.imbalance_pct = 117 kernel.sched_domain.cpu36.domain1.max_interval = 24 kernel.sched_domain.cpu36.domain1.max_newidle_lb_cost = 15873 kernel.sched_domain.cpu36.domain1.min_interval = 12 kernel.sched_domain.cpu36.domain1.name = MC kernel.sched_domain.cpu36.domain2.busy_factor = 16 kernel.sched_domain.cpu36.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu36.domain2.flags = 25647 kernel.sched_domain.cpu36.domain2.imbalance_pct = 117 kernel.sched_domain.cpu36.domain2.max_interval = 96 kernel.sched_domain.cpu36.domain2.max_newidle_lb_cost = 67809 kernel.sched_domain.cpu36.domain2.min_interval = 48 kernel.sched_domain.cpu36.domain2.name = NUMA kernel.sched_domain.cpu37.domain0.busy_factor = 16 kernel.sched_domain.cpu37.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu37.domain0.flags = 4783 kernel.sched_domain.cpu37.domain0.imbalance_pct = 110 kernel.sched_domain.cpu37.domain0.max_interval = 4 kernel.sched_domain.cpu37.domain0.max_newidle_lb_cost = 3390 kernel.sched_domain.cpu37.domain0.min_interval = 2 kernel.sched_domain.cpu37.domain0.name = SMT kernel.sched_domain.cpu37.domain1.busy_factor = 16 kernel.sched_domain.cpu37.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu37.domain1.flags = 4655 kernel.sched_domain.cpu37.domain1.imbalance_pct = 117 kernel.sched_domain.cpu37.domain1.max_interval = 24 kernel.sched_domain.cpu37.domain1.max_newidle_lb_cost = 16021 kernel.sched_domain.cpu37.domain1.min_interval = 12 kernel.sched_domain.cpu37.domain1.name = MC kernel.sched_domain.cpu37.domain2.busy_factor = 16 kernel.sched_domain.cpu37.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu37.domain2.flags = 25647 kernel.sched_domain.cpu37.domain2.imbalance_pct = 117 kernel.sched_domain.cpu37.domain2.max_interval = 96 kernel.sched_domain.cpu37.domain2.max_newidle_lb_cost = 56085 kernel.sched_domain.cpu37.domain2.min_interval = 48 kernel.sched_domain.cpu37.domain2.name = NUMA kernel.sched_domain.cpu38.domain0.busy_factor = 16 kernel.sched_domain.cpu38.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu38.domain0.flags = 4783 kernel.sched_domain.cpu38.domain0.imbalance_pct = 110 kernel.sched_domain.cpu38.domain0.max_interval = 4 kernel.sched_domain.cpu38.domain0.max_newidle_lb_cost = 3584 kernel.sched_domain.cpu38.domain0.min_interval = 2 kernel.sched_domain.cpu38.domain0.name = SMT kernel.sched_domain.cpu38.domain1.busy_factor = 16 kernel.sched_domain.cpu38.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu38.domain1.flags = 4655 kernel.sched_domain.cpu38.domain1.imbalance_pct = 117 kernel.sched_domain.cpu38.domain1.max_interval = 24 kernel.sched_domain.cpu38.domain1.max_newidle_lb_cost = 18528 kernel.sched_domain.cpu38.domain1.min_interval = 12 kernel.sched_domain.cpu38.domain1.name = MC kernel.sched_domain.cpu38.domain2.busy_factor = 16 kernel.sched_domain.cpu38.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu38.domain2.flags = 25647 kernel.sched_domain.cpu38.domain2.imbalance_pct = 117 kernel.sched_domain.cpu38.domain2.max_interval = 96 kernel.sched_domain.cpu38.domain2.max_newidle_lb_cost = 54971 kernel.sched_domain.cpu38.domain2.min_interval = 48 kernel.sched_domain.cpu38.domain2.name = NUMA kernel.sched_domain.cpu39.domain0.busy_factor = 16 kernel.sched_domain.cpu39.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu39.domain0.flags = 4783 kernel.sched_domain.cpu39.domain0.imbalance_pct = 110 kernel.sched_domain.cpu39.domain0.max_interval = 4 kernel.sched_domain.cpu39.domain0.max_newidle_lb_cost = 3489 kernel.sched_domain.cpu39.domain0.min_interval = 2 kernel.sched_domain.cpu39.domain0.name = SMT kernel.sched_domain.cpu39.domain1.busy_factor = 16 kernel.sched_domain.cpu39.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu39.domain1.flags = 4655 kernel.sched_domain.cpu39.domain1.imbalance_pct = 117 kernel.sched_domain.cpu39.domain1.max_interval = 24 kernel.sched_domain.cpu39.domain1.max_newidle_lb_cost = 19992 kernel.sched_domain.cpu39.domain1.min_interval = 12 kernel.sched_domain.cpu39.domain1.name = MC kernel.sched_domain.cpu39.domain2.busy_factor = 16 kernel.sched_domain.cpu39.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu39.domain2.flags = 25647 kernel.sched_domain.cpu39.domain2.imbalance_pct = 117 kernel.sched_domain.cpu39.domain2.max_interval = 96 kernel.sched_domain.cpu39.domain2.max_newidle_lb_cost = 56093 kernel.sched_domain.cpu39.domain2.min_interval = 48 kernel.sched_domain.cpu39.domain2.name = NUMA kernel.sched_domain.cpu4.domain0.busy_factor = 16 kernel.sched_domain.cpu4.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu4.domain0.flags = 4783 kernel.sched_domain.cpu4.domain0.imbalance_pct = 110 kernel.sched_domain.cpu4.domain0.max_interval = 4 kernel.sched_domain.cpu4.domain0.max_newidle_lb_cost = 3005 kernel.sched_domain.cpu4.domain0.min_interval = 2 kernel.sched_domain.cpu4.domain0.name = SMT kernel.sched_domain.cpu4.domain1.busy_factor = 16 kernel.sched_domain.cpu4.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu4.domain1.flags = 4655 kernel.sched_domain.cpu4.domain1.imbalance_pct = 117 kernel.sched_domain.cpu4.domain1.max_interval = 24 kernel.sched_domain.cpu4.domain1.max_newidle_lb_cost = 13875 kernel.sched_domain.cpu4.domain1.min_interval = 12 kernel.sched_domain.cpu4.domain1.name = MC kernel.sched_domain.cpu4.domain2.busy_factor = 16 kernel.sched_domain.cpu4.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu4.domain2.flags = 25647 kernel.sched_domain.cpu4.domain2.imbalance_pct = 117 kernel.sched_domain.cpu4.domain2.max_interval = 96 kernel.sched_domain.cpu4.domain2.max_newidle_lb_cost = 53423 kernel.sched_domain.cpu4.domain2.min_interval = 48 kernel.sched_domain.cpu4.domain2.name = NUMA kernel.sched_domain.cpu40.domain0.busy_factor = 16 kernel.sched_domain.cpu40.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu40.domain0.flags = 4783 kernel.sched_domain.cpu40.domain0.imbalance_pct = 110 kernel.sched_domain.cpu40.domain0.max_interval = 4 kernel.sched_domain.cpu40.domain0.max_newidle_lb_cost = 7133 kernel.sched_domain.cpu40.domain0.min_interval = 2 kernel.sched_domain.cpu40.domain0.name = SMT kernel.sched_domain.cpu40.domain1.busy_factor = 16 kernel.sched_domain.cpu40.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu40.domain1.flags = 4655 kernel.sched_domain.cpu40.domain1.imbalance_pct = 117 kernel.sched_domain.cpu40.domain1.max_interval = 24 kernel.sched_domain.cpu40.domain1.max_newidle_lb_cost = 13924 kernel.sched_domain.cpu40.domain1.min_interval = 12 kernel.sched_domain.cpu40.domain1.name = MC kernel.sched_domain.cpu40.domain2.busy_factor = 16 kernel.sched_domain.cpu40.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu40.domain2.flags = 25647 kernel.sched_domain.cpu40.domain2.imbalance_pct = 117 kernel.sched_domain.cpu40.domain2.max_interval = 96 kernel.sched_domain.cpu40.domain2.max_newidle_lb_cost = 73079 kernel.sched_domain.cpu40.domain2.min_interval = 48 kernel.sched_domain.cpu40.domain2.name = NUMA kernel.sched_domain.cpu41.domain0.busy_factor = 16 kernel.sched_domain.cpu41.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu41.domain0.flags = 4783 kernel.sched_domain.cpu41.domain0.imbalance_pct = 110 kernel.sched_domain.cpu41.domain0.max_interval = 4 kernel.sched_domain.cpu41.domain0.max_newidle_lb_cost = 3017 kernel.sched_domain.cpu41.domain0.min_interval = 2 kernel.sched_domain.cpu41.domain0.name = SMT kernel.sched_domain.cpu41.domain1.busy_factor = 16 kernel.sched_domain.cpu41.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu41.domain1.flags = 4655 kernel.sched_domain.cpu41.domain1.imbalance_pct = 117 kernel.sched_domain.cpu41.domain1.max_interval = 24 kernel.sched_domain.cpu41.domain1.max_newidle_lb_cost = 10459 kernel.sched_domain.cpu41.domain1.min_interval = 12 kernel.sched_domain.cpu41.domain1.name = MC kernel.sched_domain.cpu41.domain2.busy_factor = 16 kernel.sched_domain.cpu41.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu41.domain2.flags = 25647 kernel.sched_domain.cpu41.domain2.imbalance_pct = 117 kernel.sched_domain.cpu41.domain2.max_interval = 96 kernel.sched_domain.cpu41.domain2.max_newidle_lb_cost = 56423 kernel.sched_domain.cpu41.domain2.min_interval = 48 kernel.sched_domain.cpu41.domain2.name = NUMA kernel.sched_domain.cpu42.domain0.busy_factor = 16 kernel.sched_domain.cpu42.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu42.domain0.flags = 4783 kernel.sched_domain.cpu42.domain0.imbalance_pct = 110 kernel.sched_domain.cpu42.domain0.max_interval = 4 kernel.sched_domain.cpu42.domain0.max_newidle_lb_cost = 2734 kernel.sched_domain.cpu42.domain0.min_interval = 2 kernel.sched_domain.cpu42.domain0.name = SMT kernel.sched_domain.cpu42.domain1.busy_factor = 16 kernel.sched_domain.cpu42.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu42.domain1.flags = 4655 kernel.sched_domain.cpu42.domain1.imbalance_pct = 117 kernel.sched_domain.cpu42.domain1.max_interval = 24 kernel.sched_domain.cpu42.domain1.max_newidle_lb_cost = 16513 kernel.sched_domain.cpu42.domain1.min_interval = 12 kernel.sched_domain.cpu42.domain1.name = MC kernel.sched_domain.cpu42.domain2.busy_factor = 16 kernel.sched_domain.cpu42.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu42.domain2.flags = 25647 kernel.sched_domain.cpu42.domain2.imbalance_pct = 117 kernel.sched_domain.cpu42.domain2.max_interval = 96 kernel.sched_domain.cpu42.domain2.max_newidle_lb_cost = 56282 kernel.sched_domain.cpu42.domain2.min_interval = 48 kernel.sched_domain.cpu42.domain2.name = NUMA kernel.sched_domain.cpu43.domain0.busy_factor = 16 kernel.sched_domain.cpu43.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu43.domain0.flags = 4783 kernel.sched_domain.cpu43.domain0.imbalance_pct = 110 kernel.sched_domain.cpu43.domain0.max_interval = 4 kernel.sched_domain.cpu43.domain0.max_newidle_lb_cost = 3854 kernel.sched_domain.cpu43.domain0.min_interval = 2 kernel.sched_domain.cpu43.domain0.name = SMT kernel.sched_domain.cpu43.domain1.busy_factor = 16 kernel.sched_domain.cpu43.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu43.domain1.flags = 4655 kernel.sched_domain.cpu43.domain1.imbalance_pct = 117 kernel.sched_domain.cpu43.domain1.max_interval = 24 kernel.sched_domain.cpu43.domain1.max_newidle_lb_cost = 21806 kernel.sched_domain.cpu43.domain1.min_interval = 12 kernel.sched_domain.cpu43.domain1.name = MC kernel.sched_domain.cpu43.domain2.busy_factor = 16 kernel.sched_domain.cpu43.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu43.domain2.flags = 25647 kernel.sched_domain.cpu43.domain2.imbalance_pct = 117 kernel.sched_domain.cpu43.domain2.max_interval = 96 kernel.sched_domain.cpu43.domain2.max_newidle_lb_cost = 59739 kernel.sched_domain.cpu43.domain2.min_interval = 48 kernel.sched_domain.cpu43.domain2.name = NUMA kernel.sched_domain.cpu44.domain0.busy_factor = 16 kernel.sched_domain.cpu44.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu44.domain0.flags = 4783 kernel.sched_domain.cpu44.domain0.imbalance_pct = 110 kernel.sched_domain.cpu44.domain0.max_interval = 4 kernel.sched_domain.cpu44.domain0.max_newidle_lb_cost = 7097 kernel.sched_domain.cpu44.domain0.min_interval = 2 kernel.sched_domain.cpu44.domain0.name = SMT kernel.sched_domain.cpu44.domain1.busy_factor = 16 kernel.sched_domain.cpu44.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu44.domain1.flags = 4655 kernel.sched_domain.cpu44.domain1.imbalance_pct = 117 kernel.sched_domain.cpu44.domain1.max_interval = 24 kernel.sched_domain.cpu44.domain1.max_newidle_lb_cost = 13171 kernel.sched_domain.cpu44.domain1.min_interval = 12 kernel.sched_domain.cpu44.domain1.name = MC kernel.sched_domain.cpu44.domain2.busy_factor = 16 kernel.sched_domain.cpu44.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu44.domain2.flags = 25647 kernel.sched_domain.cpu44.domain2.imbalance_pct = 117 kernel.sched_domain.cpu44.domain2.max_interval = 96 kernel.sched_domain.cpu44.domain2.max_newidle_lb_cost = 58293 kernel.sched_domain.cpu44.domain2.min_interval = 48 kernel.sched_domain.cpu44.domain2.name = NUMA kernel.sched_domain.cpu45.domain0.busy_factor = 16 kernel.sched_domain.cpu45.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu45.domain0.flags = 4783 kernel.sched_domain.cpu45.domain0.imbalance_pct = 110 kernel.sched_domain.cpu45.domain0.max_interval = 4 kernel.sched_domain.cpu45.domain0.max_newidle_lb_cost = 4931 kernel.sched_domain.cpu45.domain0.min_interval = 2 kernel.sched_domain.cpu45.domain0.name = SMT kernel.sched_domain.cpu45.domain1.busy_factor = 16 kernel.sched_domain.cpu45.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu45.domain1.flags = 4655 kernel.sched_domain.cpu45.domain1.imbalance_pct = 117 kernel.sched_domain.cpu45.domain1.max_interval = 24 kernel.sched_domain.cpu45.domain1.max_newidle_lb_cost = 21734 kernel.sched_domain.cpu45.domain1.min_interval = 12 kernel.sched_domain.cpu45.domain1.name = MC kernel.sched_domain.cpu45.domain2.busy_factor = 16 kernel.sched_domain.cpu45.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu45.domain2.flags = 25647 kernel.sched_domain.cpu45.domain2.imbalance_pct = 117 kernel.sched_domain.cpu45.domain2.max_interval = 96 kernel.sched_domain.cpu45.domain2.max_newidle_lb_cost = 58400 kernel.sched_domain.cpu45.domain2.min_interval = 48 kernel.sched_domain.cpu45.domain2.name = NUMA kernel.sched_domain.cpu46.domain0.busy_factor = 16 kernel.sched_domain.cpu46.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu46.domain0.flags = 4783 kernel.sched_domain.cpu46.domain0.imbalance_pct = 110 kernel.sched_domain.cpu46.domain0.max_interval = 4 kernel.sched_domain.cpu46.domain0.max_newidle_lb_cost = 2906 kernel.sched_domain.cpu46.domain0.min_interval = 2 kernel.sched_domain.cpu46.domain0.name = SMT kernel.sched_domain.cpu46.domain1.busy_factor = 16 kernel.sched_domain.cpu46.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu46.domain1.flags = 4655 kernel.sched_domain.cpu46.domain1.imbalance_pct = 117 kernel.sched_domain.cpu46.domain1.max_interval = 24 kernel.sched_domain.cpu46.domain1.max_newidle_lb_cost = 17980 kernel.sched_domain.cpu46.domain1.min_interval = 12 kernel.sched_domain.cpu46.domain1.name = MC kernel.sched_domain.cpu46.domain2.busy_factor = 16 kernel.sched_domain.cpu46.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu46.domain2.flags = 25647 kernel.sched_domain.cpu46.domain2.imbalance_pct = 117 kernel.sched_domain.cpu46.domain2.max_interval = 96 kernel.sched_domain.cpu46.domain2.max_newidle_lb_cost = 50398 kernel.sched_domain.cpu46.domain2.min_interval = 48 kernel.sched_domain.cpu46.domain2.name = NUMA kernel.sched_domain.cpu47.domain0.busy_factor = 16 kernel.sched_domain.cpu47.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu47.domain0.flags = 4783 kernel.sched_domain.cpu47.domain0.imbalance_pct = 110 kernel.sched_domain.cpu47.domain0.max_interval = 4 kernel.sched_domain.cpu47.domain0.max_newidle_lb_cost = 3052 kernel.sched_domain.cpu47.domain0.min_interval = 2 kernel.sched_domain.cpu47.domain0.name = SMT kernel.sched_domain.cpu47.domain1.busy_factor = 16 kernel.sched_domain.cpu47.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu47.domain1.flags = 4655 kernel.sched_domain.cpu47.domain1.imbalance_pct = 117 kernel.sched_domain.cpu47.domain1.max_interval = 24 kernel.sched_domain.cpu47.domain1.max_newidle_lb_cost = 11005 kernel.sched_domain.cpu47.domain1.min_interval = 12 kernel.sched_domain.cpu47.domain1.name = MC kernel.sched_domain.cpu47.domain2.busy_factor = 16 kernel.sched_domain.cpu47.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu47.domain2.flags = 25647 kernel.sched_domain.cpu47.domain2.imbalance_pct = 117 kernel.sched_domain.cpu47.domain2.max_interval = 96 kernel.sched_domain.cpu47.domain2.max_newidle_lb_cost = 80071 kernel.sched_domain.cpu47.domain2.min_interval = 48 kernel.sched_domain.cpu47.domain2.name = NUMA kernel.sched_domain.cpu5.domain0.busy_factor = 16 kernel.sched_domain.cpu5.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu5.domain0.flags = 4783 kernel.sched_domain.cpu5.domain0.imbalance_pct = 110 kernel.sched_domain.cpu5.domain0.max_interval = 4 kernel.sched_domain.cpu5.domain0.max_newidle_lb_cost = 2502 kernel.sched_domain.cpu5.domain0.min_interval = 2 kernel.sched_domain.cpu5.domain0.name = SMT kernel.sched_domain.cpu5.domain1.busy_factor = 16 kernel.sched_domain.cpu5.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu5.domain1.flags = 4655 kernel.sched_domain.cpu5.domain1.imbalance_pct = 117 kernel.sched_domain.cpu5.domain1.max_interval = 24 kernel.sched_domain.cpu5.domain1.max_newidle_lb_cost = 14505 kernel.sched_domain.cpu5.domain1.min_interval = 12 kernel.sched_domain.cpu5.domain1.name = MC kernel.sched_domain.cpu5.domain2.busy_factor = 16 kernel.sched_domain.cpu5.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu5.domain2.flags = 25647 kernel.sched_domain.cpu5.domain2.imbalance_pct = 117 kernel.sched_domain.cpu5.domain2.max_interval = 96 kernel.sched_domain.cpu5.domain2.max_newidle_lb_cost = 63959 kernel.sched_domain.cpu5.domain2.min_interval = 48 kernel.sched_domain.cpu5.domain2.name = NUMA kernel.sched_domain.cpu6.domain0.busy_factor = 16 kernel.sched_domain.cpu6.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu6.domain0.flags = 4783 kernel.sched_domain.cpu6.domain0.imbalance_pct = 110 kernel.sched_domain.cpu6.domain0.max_interval = 4 kernel.sched_domain.cpu6.domain0.max_newidle_lb_cost = 5952 kernel.sched_domain.cpu6.domain0.min_interval = 2 kernel.sched_domain.cpu6.domain0.name = SMT kernel.sched_domain.cpu6.domain1.busy_factor = 16 kernel.sched_domain.cpu6.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu6.domain1.flags = 4655 kernel.sched_domain.cpu6.domain1.imbalance_pct = 117 kernel.sched_domain.cpu6.domain1.max_interval = 24 kernel.sched_domain.cpu6.domain1.max_newidle_lb_cost = 16418 kernel.sched_domain.cpu6.domain1.min_interval = 12 kernel.sched_domain.cpu6.domain1.name = MC kernel.sched_domain.cpu6.domain2.busy_factor = 16 kernel.sched_domain.cpu6.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu6.domain2.flags = 25647 kernel.sched_domain.cpu6.domain2.imbalance_pct = 117 kernel.sched_domain.cpu6.domain2.max_interval = 96 kernel.sched_domain.cpu6.domain2.max_newidle_lb_cost = 52194 kernel.sched_domain.cpu6.domain2.min_interval = 48 kernel.sched_domain.cpu6.domain2.name = NUMA kernel.sched_domain.cpu7.domain0.busy_factor = 16 kernel.sched_domain.cpu7.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu7.domain0.flags = 4783 kernel.sched_domain.cpu7.domain0.imbalance_pct = 110 kernel.sched_domain.cpu7.domain0.max_interval = 4 kernel.sched_domain.cpu7.domain0.max_newidle_lb_cost = 2880 kernel.sched_domain.cpu7.domain0.min_interval = 2 kernel.sched_domain.cpu7.domain0.name = SMT kernel.sched_domain.cpu7.domain1.busy_factor = 16 kernel.sched_domain.cpu7.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu7.domain1.flags = 4655 kernel.sched_domain.cpu7.domain1.imbalance_pct = 117 kernel.sched_domain.cpu7.domain1.max_interval = 24 kernel.sched_domain.cpu7.domain1.max_newidle_lb_cost = 19085 kernel.sched_domain.cpu7.domain1.min_interval = 12 kernel.sched_domain.cpu7.domain1.name = MC kernel.sched_domain.cpu7.domain2.busy_factor = 16 kernel.sched_domain.cpu7.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu7.domain2.flags = 25647 kernel.sched_domain.cpu7.domain2.imbalance_pct = 117 kernel.sched_domain.cpu7.domain2.max_interval = 96 kernel.sched_domain.cpu7.domain2.max_newidle_lb_cost = 67051 kernel.sched_domain.cpu7.domain2.min_interval = 48 kernel.sched_domain.cpu7.domain2.name = NUMA kernel.sched_domain.cpu8.domain0.busy_factor = 16 kernel.sched_domain.cpu8.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu8.domain0.flags = 4783 kernel.sched_domain.cpu8.domain0.imbalance_pct = 110 kernel.sched_domain.cpu8.domain0.max_interval = 4 kernel.sched_domain.cpu8.domain0.max_newidle_lb_cost = 4130 kernel.sched_domain.cpu8.domain0.min_interval = 2 kernel.sched_domain.cpu8.domain0.name = SMT kernel.sched_domain.cpu8.domain1.busy_factor = 16 kernel.sched_domain.cpu8.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu8.domain1.flags = 4655 kernel.sched_domain.cpu8.domain1.imbalance_pct = 117 kernel.sched_domain.cpu8.domain1.max_interval = 24 kernel.sched_domain.cpu8.domain1.max_newidle_lb_cost = 16676 kernel.sched_domain.cpu8.domain1.min_interval = 12 kernel.sched_domain.cpu8.domain1.name = MC kernel.sched_domain.cpu8.domain2.busy_factor = 16 kernel.sched_domain.cpu8.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu8.domain2.flags = 25647 kernel.sched_domain.cpu8.domain2.imbalance_pct = 117 kernel.sched_domain.cpu8.domain2.max_interval = 96 kernel.sched_domain.cpu8.domain2.max_newidle_lb_cost = 79830 kernel.sched_domain.cpu8.domain2.min_interval = 48 kernel.sched_domain.cpu8.domain2.name = NUMA kernel.sched_domain.cpu9.domain0.busy_factor = 16 kernel.sched_domain.cpu9.domain0.cache_nice_tries = 0 kernel.sched_domain.cpu9.domain0.flags = 4783 kernel.sched_domain.cpu9.domain0.imbalance_pct = 110 kernel.sched_domain.cpu9.domain0.max_interval = 4 kernel.sched_domain.cpu9.domain0.max_newidle_lb_cost = 3553 kernel.sched_domain.cpu9.domain0.min_interval = 2 kernel.sched_domain.cpu9.domain0.name = SMT kernel.sched_domain.cpu9.domain1.busy_factor = 16 kernel.sched_domain.cpu9.domain1.cache_nice_tries = 1 kernel.sched_domain.cpu9.domain1.flags = 4655 kernel.sched_domain.cpu9.domain1.imbalance_pct = 117 kernel.sched_domain.cpu9.domain1.max_interval = 24 kernel.sched_domain.cpu9.domain1.max_newidle_lb_cost = 10631 kernel.sched_domain.cpu9.domain1.min_interval = 12 kernel.sched_domain.cpu9.domain1.name = MC kernel.sched_domain.cpu9.domain2.busy_factor = 16 kernel.sched_domain.cpu9.domain2.cache_nice_tries = 2 kernel.sched_domain.cpu9.domain2.flags = 25647 kernel.sched_domain.cpu9.domain2.imbalance_pct = 117 kernel.sched_domain.cpu9.domain2.max_interval = 96 kernel.sched_domain.cpu9.domain2.max_newidle_lb_cost = 80153 kernel.sched_domain.cpu9.domain2.min_interval = 48 kernel.sched_domain.cpu9.domain2.name = NUMA kernel.sched_energy_aware = 1 kernel.sched_latency_ns = 24000000 kernel.sched_migration_cost_ns = 5000000 kernel.sched_min_granularity_ns = 10000000 kernel.sched_nr_migrate = 32 kernel.sched_rr_timeslice_ms = 100 kernel.sched_rt_period_us = 1000000 kernel.sched_rt_runtime_us = 950000 kernel.sched_schedstats = 0 kernel.sched_tunable_scaling = 1 kernel.sched_wakeup_granularity_ns = 15000000 kernel.seccomp.actions_avail = kill_process kill_thread trap errno trace log allow kernel.seccomp.actions_logged = kill_process kill_thread trap errno trace log kernel.sem = 32000 1024000000 500 32000 kernel.sem_next_id = -1 kernel.shm_next_id = -1 kernel.shm_rmid_forced = 0 kernel.shmall = 18446744073692774399 kernel.shmmax = 18446744073692774399 kernel.shmmni = 4096 kernel.soft_watchdog = 1 kernel.softlockup_all_cpu_backtrace = 0 kernel.softlockup_panic = 0 kernel.stack_tracer_enabled = 0 kernel.sysctl_writes_strict = 1 kernel.sysrq = 16 kernel.tainted = 0 kernel.threads-max = 2057731 kernel.timer_migration = 1 kernel.traceoff_on_warning = 0 kernel.tracepoint_printk = 0 kernel.unknown_nmi_panic = 0 kernel.unprivileged_bpf_disabled = 1 kernel.usermodehelper.bset = 4294967295 511 kernel.usermodehelper.inheritable = 4294967295 511 kernel.version = #1 SMP Mon Nov 15 20:49:28 UTC 2021 kernel.watchdog = 1 kernel.watchdog_cpumask = 0-47 kernel.watchdog_thresh = 10 kernel.yama.ptrace_scope = 0 net.core.bpf_jit_enable = 1 net.core.bpf_jit_harden = 1 net.core.bpf_jit_kallsyms = 1 net.core.bpf_jit_limit = 264241152 net.core.busy_poll = 0 net.core.busy_read = 0 net.core.default_qdisc = fq_codel net.core.dev_weight = 64 net.core.dev_weight_rx_bias = 1 net.core.dev_weight_tx_bias = 1 net.core.fb_tunnels_only_for_init_net = 0 net.core.flow_limit_cpu_bitmap = 0000,00000000 net.core.flow_limit_table_len = 4096 net.core.max_skb_frags = 17 net.core.message_burst = 10 net.core.message_cost = 5 net.core.netdev_budget = 300 net.core.netdev_budget_usecs = 2000 net.core.netdev_max_backlog = 100000 net.core.netdev_rss_key = 2b:83:2f:13:88:e4:9a:73:a6:ac:24:c4:fd:2d:22:36:c6:20:00:59:e1:69:a8:3e:2c:8d:e7:fd:df:bf:7d:17:ea:dd:bd:68:c0:8f:3b:2b:7f:b7:ea:78:87:8e:52:6f:0b:ce:64:13 net.core.netdev_tstamp_prequeue = 1 net.core.optmem_max = 40960 net.core.rmem_default = 56623104 net.core.rmem_max = 67108864 net.core.rps_sock_flow_entries = 0 net.core.somaxconn = 10000 net.core.tstamp_allow_data = 1 net.core.warnings = 0 net.core.wmem_default = 56623104 net.core.wmem_max = 67108864 net.core.xfrm_acq_expires = 30 net.core.xfrm_aevent_etime = 10 net.core.xfrm_aevent_rseqth = 2 net.core.xfrm_larval_drop = 1 net.ipv4.cipso_cache_bucket_size = 10 net.ipv4.cipso_cache_enable = 1 net.ipv4.cipso_rbm_optfmt = 0 net.ipv4.cipso_rbm_strictvalid = 1 net.ipv4.conf.all.accept_local = 0 net.ipv4.conf.all.accept_redirects = 1 net.ipv4.conf.all.accept_source_route = 0 net.ipv4.conf.all.arp_accept = 0 net.ipv4.conf.all.arp_announce = 0 net.ipv4.conf.all.arp_filter = 0 net.ipv4.conf.all.arp_ignore = 0 net.ipv4.conf.all.arp_notify = 0 net.ipv4.conf.all.bc_forwarding = 0 net.ipv4.conf.all.bootp_relay = 0 net.ipv4.conf.all.disable_policy = 0 net.ipv4.conf.all.disable_xfrm = 0 net.ipv4.conf.all.drop_gratuitous_arp = 0 net.ipv4.conf.all.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.all.force_igmp_version = 0 net.ipv4.conf.all.forwarding = 0 net.ipv4.conf.all.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.all.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.all.ignore_routes_with_linkdown = 0 net.ipv4.conf.all.log_martians = 0 net.ipv4.conf.all.mc_forwarding = 0 net.ipv4.conf.all.medium_id = 0 net.ipv4.conf.all.promote_secondaries = 1 net.ipv4.conf.all.proxy_arp = 0 net.ipv4.conf.all.proxy_arp_pvlan = 0 net.ipv4.conf.all.route_localnet = 0 net.ipv4.conf.all.rp_filter = 1 net.ipv4.conf.all.secure_redirects = 1 net.ipv4.conf.all.send_redirects = 1 net.ipv4.conf.all.shared_media = 1 net.ipv4.conf.all.src_valid_mark = 0 net.ipv4.conf.all.tag = 0 net.ipv4.conf.bond0.accept_local = 0 net.ipv4.conf.bond0.accept_redirects = 1 net.ipv4.conf.bond0.accept_source_route = 1 net.ipv4.conf.bond0.arp_accept = 0 net.ipv4.conf.bond0.arp_announce = 0 net.ipv4.conf.bond0.arp_filter = 0 net.ipv4.conf.bond0.arp_ignore = 0 net.ipv4.conf.bond0.arp_notify = 0 net.ipv4.conf.bond0.bc_forwarding = 0 net.ipv4.conf.bond0.bootp_relay = 0 net.ipv4.conf.bond0.disable_policy = 0 net.ipv4.conf.bond0.disable_xfrm = 0 net.ipv4.conf.bond0.drop_gratuitous_arp = 0 net.ipv4.conf.bond0.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.bond0.force_igmp_version = 0 net.ipv4.conf.bond0.forwarding = 0 net.ipv4.conf.bond0.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.bond0.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.bond0.ignore_routes_with_linkdown = 0 net.ipv4.conf.bond0.log_martians = 0 net.ipv4.conf.bond0.mc_forwarding = 0 net.ipv4.conf.bond0.medium_id = 0 net.ipv4.conf.bond0.promote_secondaries = 0 net.ipv4.conf.bond0.proxy_arp = 0 net.ipv4.conf.bond0.proxy_arp_pvlan = 0 net.ipv4.conf.bond0.route_localnet = 0 net.ipv4.conf.bond0.rp_filter = 0 net.ipv4.conf.bond0.secure_redirects = 1 net.ipv4.conf.bond0.send_redirects = 1 net.ipv4.conf.bond0.shared_media = 1 net.ipv4.conf.bond0.src_valid_mark = 0 net.ipv4.conf.bond0.tag = 0 net.ipv4.conf.bond1.accept_local = 0 net.ipv4.conf.bond1.accept_redirects = 1 net.ipv4.conf.bond1.accept_source_route = 1 net.ipv4.conf.bond1.arp_accept = 0 net.ipv4.conf.bond1.arp_announce = 0 net.ipv4.conf.bond1.arp_filter = 0 net.ipv4.conf.bond1.arp_ignore = 0 net.ipv4.conf.bond1.arp_notify = 0 net.ipv4.conf.bond1.bc_forwarding = 0 net.ipv4.conf.bond1.bootp_relay = 0 net.ipv4.conf.bond1.disable_policy = 0 net.ipv4.conf.bond1.disable_xfrm = 0 net.ipv4.conf.bond1.drop_gratuitous_arp = 0 net.ipv4.conf.bond1.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.bond1.force_igmp_version = 0 net.ipv4.conf.bond1.forwarding = 0 net.ipv4.conf.bond1.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.bond1.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.bond1.ignore_routes_with_linkdown = 0 net.ipv4.conf.bond1.log_martians = 0 net.ipv4.conf.bond1.mc_forwarding = 0 net.ipv4.conf.bond1.medium_id = 0 net.ipv4.conf.bond1.promote_secondaries = 0 net.ipv4.conf.bond1.proxy_arp = 0 net.ipv4.conf.bond1.proxy_arp_pvlan = 0 net.ipv4.conf.bond1.route_localnet = 0 net.ipv4.conf.bond1.rp_filter = 0 net.ipv4.conf.bond1.secure_redirects = 1 net.ipv4.conf.bond1.send_redirects = 1 net.ipv4.conf.bond1.shared_media = 1 net.ipv4.conf.bond1.src_valid_mark = 0 net.ipv4.conf.bond1.tag = 0 net.ipv4.conf.default.accept_local = 0 net.ipv4.conf.default.accept_redirects = 1 net.ipv4.conf.default.accept_source_route = 1 net.ipv4.conf.default.arp_accept = 0 net.ipv4.conf.default.arp_announce = 0 net.ipv4.conf.default.arp_filter = 0 net.ipv4.conf.default.arp_ignore = 0 net.ipv4.conf.default.arp_notify = 0 net.ipv4.conf.default.bc_forwarding = 0 net.ipv4.conf.default.bootp_relay = 0 net.ipv4.conf.default.disable_policy = 0 net.ipv4.conf.default.disable_xfrm = 0 net.ipv4.conf.default.drop_gratuitous_arp = 0 net.ipv4.conf.default.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.default.force_igmp_version = 0 net.ipv4.conf.default.forwarding = 0 net.ipv4.conf.default.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.default.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 net.ipv4.conf.default.log_martians = 0 net.ipv4.conf.default.mc_forwarding = 0 net.ipv4.conf.default.medium_id = 0 net.ipv4.conf.default.promote_secondaries = 0 net.ipv4.conf.default.proxy_arp = 0 net.ipv4.conf.default.proxy_arp_pvlan = 0 net.ipv4.conf.default.route_localnet = 0 net.ipv4.conf.default.rp_filter = 0 net.ipv4.conf.default.secure_redirects = 1 net.ipv4.conf.default.send_redirects = 1 net.ipv4.conf.default.shared_media = 1 net.ipv4.conf.default.src_valid_mark = 0 net.ipv4.conf.default.tag = 0 net.ipv4.conf.ens1f0np0.accept_local = 0 net.ipv4.conf.ens1f0np0.accept_redirects = 1 net.ipv4.conf.ens1f0np0.accept_source_route = 1 net.ipv4.conf.ens1f0np0.arp_accept = 0 net.ipv4.conf.ens1f0np0.arp_announce = 0 net.ipv4.conf.ens1f0np0.arp_filter = 0 net.ipv4.conf.ens1f0np0.arp_ignore = 0 net.ipv4.conf.ens1f0np0.arp_notify = 0 net.ipv4.conf.ens1f0np0.bc_forwarding = 0 net.ipv4.conf.ens1f0np0.bootp_relay = 0 net.ipv4.conf.ens1f0np0.disable_policy = 0 net.ipv4.conf.ens1f0np0.disable_xfrm = 0 net.ipv4.conf.ens1f0np0.drop_gratuitous_arp = 0 net.ipv4.conf.ens1f0np0.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.ens1f0np0.force_igmp_version = 0 net.ipv4.conf.ens1f0np0.forwarding = 0 net.ipv4.conf.ens1f0np0.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.ens1f0np0.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.ens1f0np0.ignore_routes_with_linkdown = 0 net.ipv4.conf.ens1f0np0.log_martians = 0 net.ipv4.conf.ens1f0np0.mc_forwarding = 0 net.ipv4.conf.ens1f0np0.medium_id = 0 net.ipv4.conf.ens1f0np0.promote_secondaries = 0 net.ipv4.conf.ens1f0np0.proxy_arp = 0 net.ipv4.conf.ens1f0np0.proxy_arp_pvlan = 0 net.ipv4.conf.ens1f0np0.route_localnet = 0 net.ipv4.conf.ens1f0np0.rp_filter = 0 net.ipv4.conf.ens1f0np0.secure_redirects = 1 net.ipv4.conf.ens1f0np0.send_redirects = 1 net.ipv4.conf.ens1f0np0.shared_media = 1 net.ipv4.conf.ens1f0np0.src_valid_mark = 0 net.ipv4.conf.ens1f0np0.tag = 0 net.ipv4.conf.ens1f1np1.accept_local = 0 net.ipv4.conf.ens1f1np1.accept_redirects = 1 net.ipv4.conf.ens1f1np1.accept_source_route = 1 net.ipv4.conf.ens1f1np1.arp_accept = 0 net.ipv4.conf.ens1f1np1.arp_announce = 0 net.ipv4.conf.ens1f1np1.arp_filter = 0 net.ipv4.conf.ens1f1np1.arp_ignore = 0 net.ipv4.conf.ens1f1np1.arp_notify = 0 net.ipv4.conf.ens1f1np1.bc_forwarding = 0 net.ipv4.conf.ens1f1np1.bootp_relay = 0 net.ipv4.conf.ens1f1np1.disable_policy = 0 net.ipv4.conf.ens1f1np1.disable_xfrm = 0 net.ipv4.conf.ens1f1np1.drop_gratuitous_arp = 0 net.ipv4.conf.ens1f1np1.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.ens1f1np1.force_igmp_version = 0 net.ipv4.conf.ens1f1np1.forwarding = 0 net.ipv4.conf.ens1f1np1.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.ens1f1np1.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.ens1f1np1.ignore_routes_with_linkdown = 0 net.ipv4.conf.ens1f1np1.log_martians = 0 net.ipv4.conf.ens1f1np1.mc_forwarding = 0 net.ipv4.conf.ens1f1np1.medium_id = 0 net.ipv4.conf.ens1f1np1.promote_secondaries = 0 net.ipv4.conf.ens1f1np1.proxy_arp = 0 net.ipv4.conf.ens1f1np1.proxy_arp_pvlan = 0 net.ipv4.conf.ens1f1np1.route_localnet = 0 net.ipv4.conf.ens1f1np1.rp_filter = 0 net.ipv4.conf.ens1f1np1.secure_redirects = 1 net.ipv4.conf.ens1f1np1.send_redirects = 1 net.ipv4.conf.ens1f1np1.shared_media = 1 net.ipv4.conf.ens1f1np1.src_valid_mark = 0 net.ipv4.conf.ens1f1np1.tag = 0 net.ipv4.conf.ens3f0.accept_local = 0 net.ipv4.conf.ens3f0.accept_redirects = 1 net.ipv4.conf.ens3f0.accept_source_route = 1 net.ipv4.conf.ens3f0.arp_accept = 0 net.ipv4.conf.ens3f0.arp_announce = 0 net.ipv4.conf.ens3f0.arp_filter = 0 net.ipv4.conf.ens3f0.arp_ignore = 0 net.ipv4.conf.ens3f0.arp_notify = 0 net.ipv4.conf.ens3f0.bc_forwarding = 0 net.ipv4.conf.ens3f0.bootp_relay = 0 net.ipv4.conf.ens3f0.disable_policy = 0 net.ipv4.conf.ens3f0.disable_xfrm = 0 net.ipv4.conf.ens3f0.drop_gratuitous_arp = 0 net.ipv4.conf.ens3f0.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.ens3f0.force_igmp_version = 0 net.ipv4.conf.ens3f0.forwarding = 0 net.ipv4.conf.ens3f0.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.ens3f0.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.ens3f0.ignore_routes_with_linkdown = 0 net.ipv4.conf.ens3f0.log_martians = 0 net.ipv4.conf.ens3f0.mc_forwarding = 0 net.ipv4.conf.ens3f0.medium_id = 0 net.ipv4.conf.ens3f0.promote_secondaries = 0 net.ipv4.conf.ens3f0.proxy_arp = 0 net.ipv4.conf.ens3f0.proxy_arp_pvlan = 0 net.ipv4.conf.ens3f0.route_localnet = 0 net.ipv4.conf.ens3f0.rp_filter = 0 net.ipv4.conf.ens3f0.secure_redirects = 1 net.ipv4.conf.ens3f0.send_redirects = 1 net.ipv4.conf.ens3f0.shared_media = 1 net.ipv4.conf.ens3f0.src_valid_mark = 0 net.ipv4.conf.ens3f0.tag = 0 net.ipv4.conf.ens3f1.accept_local = 0 net.ipv4.conf.ens3f1.accept_redirects = 1 net.ipv4.conf.ens3f1.accept_source_route = 1 net.ipv4.conf.ens3f1.arp_accept = 0 net.ipv4.conf.ens3f1.arp_announce = 0 net.ipv4.conf.ens3f1.arp_filter = 0 net.ipv4.conf.ens3f1.arp_ignore = 0 net.ipv4.conf.ens3f1.arp_notify = 0 net.ipv4.conf.ens3f1.bc_forwarding = 0 net.ipv4.conf.ens3f1.bootp_relay = 0 net.ipv4.conf.ens3f1.disable_policy = 0 net.ipv4.conf.ens3f1.disable_xfrm = 0 net.ipv4.conf.ens3f1.drop_gratuitous_arp = 0 net.ipv4.conf.ens3f1.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.ens3f1.force_igmp_version = 0 net.ipv4.conf.ens3f1.forwarding = 0 net.ipv4.conf.ens3f1.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.ens3f1.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.ens3f1.ignore_routes_with_linkdown = 0 net.ipv4.conf.ens3f1.log_martians = 0 net.ipv4.conf.ens3f1.mc_forwarding = 0 net.ipv4.conf.ens3f1.medium_id = 0 net.ipv4.conf.ens3f1.promote_secondaries = 0 net.ipv4.conf.ens3f1.proxy_arp = 0 net.ipv4.conf.ens3f1.proxy_arp_pvlan = 0 net.ipv4.conf.ens3f1.route_localnet = 0 net.ipv4.conf.ens3f1.rp_filter = 0 net.ipv4.conf.ens3f1.secure_redirects = 1 net.ipv4.conf.ens3f1.send_redirects = 1 net.ipv4.conf.ens3f1.shared_media = 1 net.ipv4.conf.ens3f1.src_valid_mark = 0 net.ipv4.conf.ens3f1.tag = 0 net.ipv4.conf.lo.accept_local = 0 net.ipv4.conf.lo.accept_redirects = 1 net.ipv4.conf.lo.accept_source_route = 1 net.ipv4.conf.lo.arp_accept = 0 net.ipv4.conf.lo.arp_announce = 0 net.ipv4.conf.lo.arp_filter = 0 net.ipv4.conf.lo.arp_ignore = 0 net.ipv4.conf.lo.arp_notify = 0 net.ipv4.conf.lo.bc_forwarding = 0 net.ipv4.conf.lo.bootp_relay = 0 net.ipv4.conf.lo.disable_policy = 1 net.ipv4.conf.lo.disable_xfrm = 1 net.ipv4.conf.lo.drop_gratuitous_arp = 0 net.ipv4.conf.lo.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.lo.force_igmp_version = 0 net.ipv4.conf.lo.forwarding = 0 net.ipv4.conf.lo.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.lo.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.lo.ignore_routes_with_linkdown = 0 net.ipv4.conf.lo.log_martians = 0 net.ipv4.conf.lo.mc_forwarding = 0 net.ipv4.conf.lo.medium_id = 0 net.ipv4.conf.lo.promote_secondaries = 0 net.ipv4.conf.lo.proxy_arp = 0 net.ipv4.conf.lo.proxy_arp_pvlan = 0 net.ipv4.conf.lo.route_localnet = 0 net.ipv4.conf.lo.rp_filter = 0 net.ipv4.conf.lo.secure_redirects = 1 net.ipv4.conf.lo.send_redirects = 1 net.ipv4.conf.lo.shared_media = 1 net.ipv4.conf.lo.src_valid_mark = 0 net.ipv4.conf.lo.tag = 0 net.ipv4.fib_multipath_hash_policy = 0 net.ipv4.fib_multipath_use_neigh = 0 net.ipv4.fwmark_reflect = 0 net.ipv4.icmp_echo_ignore_all = 0 net.ipv4.icmp_echo_ignore_broadcasts = 1 net.ipv4.icmp_errors_use_inbound_ifaddr = 0 net.ipv4.icmp_ignore_bogus_error_responses = 1 net.ipv4.icmp_msgs_burst = 50 net.ipv4.icmp_msgs_per_sec = 1000 net.ipv4.icmp_ratelimit = 1000 net.ipv4.icmp_ratemask = 6168 net.ipv4.igmp_link_local_mcast_reports = 1 net.ipv4.igmp_max_memberships = 20 net.ipv4.igmp_max_msf = 10 net.ipv4.igmp_qrv = 2 net.ipv4.inet_peer_maxttl = 600 net.ipv4.inet_peer_minttl = 120 net.ipv4.inet_peer_threshold = 65664 net.ipv4.ip_default_ttl = 64 net.ipv4.ip_dynaddr = 0 net.ipv4.ip_early_demux = 1 net.ipv4.ip_forward = 0 net.ipv4.ip_forward_update_priority = 1 net.ipv4.ip_forward_use_pmtu = 0 net.ipv4.ip_local_port_range = 32768 60999 net.ipv4.ip_local_reserved_ports = net.ipv4.ip_no_pmtu_disc = 0 net.ipv4.ip_nonlocal_bind = 0 net.ipv4.ip_unprivileged_port_start = 1024 net.ipv4.ipfrag_high_thresh = 4194304 net.ipv4.ipfrag_low_thresh = 3145728 net.ipv4.ipfrag_max_dist = 64 net.ipv4.ipfrag_secret_interval = 0 net.ipv4.ipfrag_time = 30 net.ipv4.neigh.bond0.anycast_delay = 100 net.ipv4.neigh.bond0.app_solicit = 0 net.ipv4.neigh.bond0.base_reachable_time_ms = 30000 net.ipv4.neigh.bond0.delay_first_probe_time = 5 net.ipv4.neigh.bond0.gc_stale_time = 60 net.ipv4.neigh.bond0.locktime = 100 net.ipv4.neigh.bond0.mcast_resolicit = 0 net.ipv4.neigh.bond0.mcast_solicit = 3 net.ipv4.neigh.bond0.proxy_delay = 80 net.ipv4.neigh.bond0.proxy_qlen = 64 net.ipv4.neigh.bond0.retrans_time_ms = 1000 net.ipv4.neigh.bond0.ucast_solicit = 3 net.ipv4.neigh.bond0.unres_qlen = 101 net.ipv4.neigh.bond0.unres_qlen_bytes = 212992 net.ipv4.neigh.bond1.anycast_delay = 100 net.ipv4.neigh.bond1.app_solicit = 0 net.ipv4.neigh.bond1.base_reachable_time_ms = 30000 net.ipv4.neigh.bond1.delay_first_probe_time = 5 net.ipv4.neigh.bond1.gc_stale_time = 60 net.ipv4.neigh.bond1.locktime = 100 net.ipv4.neigh.bond1.mcast_resolicit = 0 net.ipv4.neigh.bond1.mcast_solicit = 3 net.ipv4.neigh.bond1.proxy_delay = 80 net.ipv4.neigh.bond1.proxy_qlen = 64 net.ipv4.neigh.bond1.retrans_time_ms = 1000 net.ipv4.neigh.bond1.ucast_solicit = 3 net.ipv4.neigh.bond1.unres_qlen = 101 net.ipv4.neigh.bond1.unres_qlen_bytes = 212992 net.ipv4.neigh.default.anycast_delay = 100 net.ipv4.neigh.default.app_solicit = 0 net.ipv4.neigh.default.base_reachable_time_ms = 30000 net.ipv4.neigh.default.delay_first_probe_time = 5 net.ipv4.neigh.default.gc_interval = 30 net.ipv4.neigh.default.gc_stale_time = 60 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_thresh2 = 512 net.ipv4.neigh.default.gc_thresh3 = 1024 net.ipv4.neigh.default.locktime = 100 net.ipv4.neigh.default.mcast_resolicit = 0 net.ipv4.neigh.default.mcast_solicit = 3 net.ipv4.neigh.default.proxy_delay = 80 net.ipv4.neigh.default.proxy_qlen = 64 net.ipv4.neigh.default.retrans_time_ms = 1000 net.ipv4.neigh.default.ucast_solicit = 3 net.ipv4.neigh.default.unres_qlen = 101 net.ipv4.neigh.default.unres_qlen_bytes = 212992 net.ipv4.neigh.ens1f0np0.anycast_delay = 100 net.ipv4.neigh.ens1f0np0.app_solicit = 0 net.ipv4.neigh.ens1f0np0.base_reachable_time_ms = 30000 net.ipv4.neigh.ens1f0np0.delay_first_probe_time = 5 net.ipv4.neigh.ens1f0np0.gc_stale_time = 60 net.ipv4.neigh.ens1f0np0.locktime = 100 net.ipv4.neigh.ens1f0np0.mcast_resolicit = 0 net.ipv4.neigh.ens1f0np0.mcast_solicit = 3 net.ipv4.neigh.ens1f0np0.proxy_delay = 80 net.ipv4.neigh.ens1f0np0.proxy_qlen = 64 net.ipv4.neigh.ens1f0np0.retrans_time_ms = 1000 net.ipv4.neigh.ens1f0np0.ucast_solicit = 3 net.ipv4.neigh.ens1f0np0.unres_qlen = 101 net.ipv4.neigh.ens1f0np0.unres_qlen_bytes = 212992 net.ipv4.neigh.ens1f1np1.anycast_delay = 100 net.ipv4.neigh.ens1f1np1.app_solicit = 0 net.ipv4.neigh.ens1f1np1.base_reachable_time_ms = 30000 net.ipv4.neigh.ens1f1np1.delay_first_probe_time = 5 net.ipv4.neigh.ens1f1np1.gc_stale_time = 60 net.ipv4.neigh.ens1f1np1.locktime = 100 net.ipv4.neigh.ens1f1np1.mcast_resolicit = 0 net.ipv4.neigh.ens1f1np1.mcast_solicit = 3 net.ipv4.neigh.ens1f1np1.proxy_delay = 80 net.ipv4.neigh.ens1f1np1.proxy_qlen = 64 net.ipv4.neigh.ens1f1np1.retrans_time_ms = 1000 net.ipv4.neigh.ens1f1np1.ucast_solicit = 3 net.ipv4.neigh.ens1f1np1.unres_qlen = 101 net.ipv4.neigh.ens1f1np1.unres_qlen_bytes = 212992 net.ipv4.neigh.ens3f0.anycast_delay = 100 net.ipv4.neigh.ens3f0.app_solicit = 0 net.ipv4.neigh.ens3f0.base_reachable_time_ms = 30000 net.ipv4.neigh.ens3f0.delay_first_probe_time = 5 net.ipv4.neigh.ens3f0.gc_stale_time = 60 net.ipv4.neigh.ens3f0.locktime = 100 net.ipv4.neigh.ens3f0.mcast_resolicit = 0 net.ipv4.neigh.ens3f0.mcast_solicit = 3 net.ipv4.neigh.ens3f0.proxy_delay = 80 net.ipv4.neigh.ens3f0.proxy_qlen = 64 net.ipv4.neigh.ens3f0.retrans_time_ms = 1000 net.ipv4.neigh.ens3f0.ucast_solicit = 3 net.ipv4.neigh.ens3f0.unres_qlen = 101 net.ipv4.neigh.ens3f0.unres_qlen_bytes = 212992 net.ipv4.neigh.ens3f1.anycast_delay = 100 net.ipv4.neigh.ens3f1.app_solicit = 0 net.ipv4.neigh.ens3f1.base_reachable_time_ms = 30000 net.ipv4.neigh.ens3f1.delay_first_probe_time = 5 net.ipv4.neigh.ens3f1.gc_stale_time = 60 net.ipv4.neigh.ens3f1.locktime = 100 net.ipv4.neigh.ens3f1.mcast_resolicit = 0 net.ipv4.neigh.ens3f1.mcast_solicit = 3 net.ipv4.neigh.ens3f1.proxy_delay = 80 net.ipv4.neigh.ens3f1.proxy_qlen = 64 net.ipv4.neigh.ens3f1.retrans_time_ms = 1000 net.ipv4.neigh.ens3f1.ucast_solicit = 3 net.ipv4.neigh.ens3f1.unres_qlen = 101 net.ipv4.neigh.ens3f1.unres_qlen_bytes = 212992 net.ipv4.neigh.lo.anycast_delay = 100 net.ipv4.neigh.lo.app_solicit = 0 net.ipv4.neigh.lo.base_reachable_time_ms = 30000 net.ipv4.neigh.lo.delay_first_probe_time = 5 net.ipv4.neigh.lo.gc_stale_time = 60 net.ipv4.neigh.lo.locktime = 100 net.ipv4.neigh.lo.mcast_resolicit = 0 net.ipv4.neigh.lo.mcast_solicit = 3 net.ipv4.neigh.lo.proxy_delay = 80 net.ipv4.neigh.lo.proxy_qlen = 64 net.ipv4.neigh.lo.retrans_time_ms = 1000 net.ipv4.neigh.lo.ucast_solicit = 3 net.ipv4.neigh.lo.unres_qlen = 101 net.ipv4.neigh.lo.unres_qlen_bytes = 212992 net.ipv4.ping_group_range = 1 0 net.ipv4.route.error_burst = 5000 net.ipv4.route.error_cost = 1000 net.ipv4.route.gc_elasticity = 8 net.ipv4.route.gc_interval = 60 net.ipv4.route.gc_min_interval = 0 net.ipv4.route.gc_min_interval_ms = 500 net.ipv4.route.gc_thresh = -1 net.ipv4.route.gc_timeout = 300 net.ipv4.route.max_size = 2147483647 net.ipv4.route.min_adv_mss = 256 net.ipv4.route.min_pmtu = 552 net.ipv4.route.mtu_expires = 600 net.ipv4.route.redirect_load = 20 net.ipv4.route.redirect_number = 9 net.ipv4.route.redirect_silence = 20480 net.ipv4.tcp_abort_on_overflow = 0 net.ipv4.tcp_adv_win_scale = 1 net.ipv4.tcp_allowed_congestion_control = reno cubic net.ipv4.tcp_app_win = 31 net.ipv4.tcp_autocorking = 1 net.ipv4.tcp_available_congestion_control = reno cubic net.ipv4.tcp_available_ulp = espintcp mptcp tls net.ipv4.tcp_base_mss = 1024 net.ipv4.tcp_challenge_ack_limit = 1000 net.ipv4.tcp_comp_sack_delay_ns = 1000000 net.ipv4.tcp_comp_sack_nr = 44 net.ipv4.tcp_congestion_control = cubic net.ipv4.tcp_dsack = 1 net.ipv4.tcp_early_demux = 1 net.ipv4.tcp_early_retrans = 3 net.ipv4.tcp_ecn = 2 net.ipv4.tcp_ecn_fallback = 1 net.ipv4.tcp_fack = 0 net.ipv4.tcp_fastopen = 1 net.ipv4.tcp_fastopen_blackhole_timeout_sec = 3600 net.ipv4.tcp_fastopen_key = 00000000-00000000-00000000-00000000 net.ipv4.tcp_fin_timeout = 12 net.ipv4.tcp_frto = 2 net.ipv4.tcp_fwmark_accept = 0 net.ipv4.tcp_invalid_ratelimit = 500 net.ipv4.tcp_keepalive_intvl = 75 net.ipv4.tcp_keepalive_probes = 9 net.ipv4.tcp_keepalive_time = 7200 net.ipv4.tcp_l3mdev_accept = 0 net.ipv4.tcp_limit_output_bytes = 262144 net.ipv4.tcp_low_latency = 0 net.ipv4.tcp_max_orphans = 262144 net.ipv4.tcp_max_reordering = 300 net.ipv4.tcp_max_syn_backlog = 100000 net.ipv4.tcp_max_tw_buckets = 262144 net.ipv4.tcp_mem = 3078840 4105122 6157680 net.ipv4.tcp_min_rtt_wlen = 300 net.ipv4.tcp_min_snd_mss = 48 net.ipv4.tcp_min_tso_segs = 2 net.ipv4.tcp_moderate_rcvbuf = 1 net.ipv4.tcp_mtu_probing = 0 net.ipv4.tcp_no_metrics_save = 0 net.ipv4.tcp_notsent_lowat = 4294967295 net.ipv4.tcp_orphan_retries = 0 net.ipv4.tcp_pacing_ca_ratio = 120 net.ipv4.tcp_pacing_ss_ratio = 200 net.ipv4.tcp_probe_interval = 600 net.ipv4.tcp_probe_threshold = 8 net.ipv4.tcp_recovery = 1 net.ipv4.tcp_reordering = 3 net.ipv4.tcp_retrans_collapse = 1 net.ipv4.tcp_retries1 = 3 net.ipv4.tcp_retries2 = 15 net.ipv4.tcp_rfc1337 = 0 net.ipv4.tcp_rmem = 4096 87380 33554432 net.ipv4.tcp_sack = 1 net.ipv4.tcp_slow_start_after_idle = 0 net.ipv4.tcp_stdurg = 0 net.ipv4.tcp_syn_retries = 6 net.ipv4.tcp_synack_retries = 5 net.ipv4.tcp_syncookies = 0 net.ipv4.tcp_thin_linear_timeouts = 0 net.ipv4.tcp_timestamps = 1 net.ipv4.tcp_tso_win_divisor = 3 net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_tx_skb_cache = 0 net.ipv4.tcp_window_scaling = 1 net.ipv4.tcp_wmem = 4096 65536 33554432 net.ipv4.tcp_workaround_signed_windows = 0 net.ipv4.udp_early_demux = 1 net.ipv4.udp_l3mdev_accept = 0 net.ipv4.udp_mem = 6157683 8210244 12315366 net.ipv4.udp_rmem_min = 4096 net.ipv4.udp_wmem_min = 4096 net.ipv4.xfrm4_gc_thresh = 32768 net.ipv6.anycast_src_echo_reply = 0 net.ipv6.auto_flowlabels = 1 net.ipv6.bindv6only = 0 net.ipv6.calipso_cache_bucket_size = 10 net.ipv6.calipso_cache_enable = 1 net.ipv6.conf.all.accept_dad = 0 net.ipv6.conf.all.accept_ra = 1 net.ipv6.conf.all.accept_ra_defrtr = 1 net.ipv6.conf.all.accept_ra_from_local = 0 net.ipv6.conf.all.accept_ra_min_hop_limit = 1 net.ipv6.conf.all.accept_ra_mtu = 1 net.ipv6.conf.all.accept_ra_pinfo = 1 net.ipv6.conf.all.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.all.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.all.accept_ra_rtr_pref = 1 net.ipv6.conf.all.accept_redirects = 1 net.ipv6.conf.all.accept_source_route = 0 net.ipv6.conf.all.addr_gen_mode = 0 net.ipv6.conf.all.autoconf = 1 net.ipv6.conf.all.dad_transmits = 1 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.all.disable_policy = 0 net.ipv6.conf.all.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.all.drop_unsolicited_na = 0 net.ipv6.conf.all.enhanced_dad = 1 net.ipv6.conf.all.force_mld_version = 0 net.ipv6.conf.all.force_tllao = 0 net.ipv6.conf.all.forwarding = 0 net.ipv6.conf.all.hop_limit = 64 net.ipv6.conf.all.ignore_routes_with_linkdown = 0 net.ipv6.conf.all.keep_addr_on_down = 0 net.ipv6.conf.all.max_addresses = 16 net.ipv6.conf.all.max_desync_factor = 600 net.ipv6.conf.all.mc_forwarding = 0 net.ipv6.conf.all.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.all.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.all.mtu = 1280 net.ipv6.conf.all.ndisc_notify = 0 net.ipv6.conf.all.ndisc_tclass = 0 net.ipv6.conf.all.optimistic_dad = 0 net.ipv6.conf.all.proxy_ndp = 0 net.ipv6.conf.all.regen_max_retry = 3 net.ipv6.conf.all.router_probe_interval = 60 net.ipv6.conf.all.router_solicitation_delay = 1 net.ipv6.conf.all.router_solicitation_interval = 4 net.ipv6.conf.all.router_solicitation_max_interval = 3600 net.ipv6.conf.all.router_solicitations = -1 net.ipv6.conf.all.seg6_enabled = 0 net.ipv6.conf.all.suppress_frag_ndisc = 1 net.ipv6.conf.all.temp_prefered_lft = 86400 net.ipv6.conf.all.temp_valid_lft = 604800 net.ipv6.conf.all.use_oif_addrs_only = 0 net.ipv6.conf.all.use_optimistic = 0 net.ipv6.conf.all.use_tempaddr = 0 net.ipv6.conf.bond0.accept_dad = 1 net.ipv6.conf.bond0.accept_ra = 1 net.ipv6.conf.bond0.accept_ra_defrtr = 1 net.ipv6.conf.bond0.accept_ra_from_local = 0 net.ipv6.conf.bond0.accept_ra_min_hop_limit = 1 net.ipv6.conf.bond0.accept_ra_mtu = 1 net.ipv6.conf.bond0.accept_ra_pinfo = 1 net.ipv6.conf.bond0.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.bond0.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.bond0.accept_ra_rtr_pref = 1 net.ipv6.conf.bond0.accept_redirects = 1 net.ipv6.conf.bond0.accept_source_route = 0 net.ipv6.conf.bond0.addr_gen_mode = 0 net.ipv6.conf.bond0.autoconf = 1 net.ipv6.conf.bond0.dad_transmits = 1 net.ipv6.conf.bond0.disable_ipv6 = 1 net.ipv6.conf.bond0.disable_policy = 0 net.ipv6.conf.bond0.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.bond0.drop_unsolicited_na = 0 net.ipv6.conf.bond0.enhanced_dad = 1 net.ipv6.conf.bond0.force_mld_version = 0 net.ipv6.conf.bond0.force_tllao = 0 net.ipv6.conf.bond0.forwarding = 0 net.ipv6.conf.bond0.hop_limit = 64 net.ipv6.conf.bond0.ignore_routes_with_linkdown = 0 net.ipv6.conf.bond0.keep_addr_on_down = 0 net.ipv6.conf.bond0.max_addresses = 16 net.ipv6.conf.bond0.max_desync_factor = 600 net.ipv6.conf.bond0.mc_forwarding = 0 net.ipv6.conf.bond0.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.bond0.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.bond0.mtu = 1500 net.ipv6.conf.bond0.ndisc_notify = 0 net.ipv6.conf.bond0.ndisc_tclass = 0 net.ipv6.conf.bond0.optimistic_dad = 0 net.ipv6.conf.bond0.proxy_ndp = 0 net.ipv6.conf.bond0.regen_max_retry = 3 net.ipv6.conf.bond0.router_probe_interval = 60 net.ipv6.conf.bond0.router_solicitation_delay = 1 net.ipv6.conf.bond0.router_solicitation_interval = 4 net.ipv6.conf.bond0.router_solicitation_max_interval = 3600 net.ipv6.conf.bond0.router_solicitations = -1 net.ipv6.conf.bond0.seg6_enabled = 0 net.ipv6.conf.bond0.suppress_frag_ndisc = 1 net.ipv6.conf.bond0.temp_prefered_lft = 86400 net.ipv6.conf.bond0.temp_valid_lft = 604800 net.ipv6.conf.bond0.use_oif_addrs_only = 0 net.ipv6.conf.bond0.use_optimistic = 0 net.ipv6.conf.bond0.use_tempaddr = 0 net.ipv6.conf.bond1.accept_dad = 1 net.ipv6.conf.bond1.accept_ra = 1 net.ipv6.conf.bond1.accept_ra_defrtr = 1 net.ipv6.conf.bond1.accept_ra_from_local = 0 net.ipv6.conf.bond1.accept_ra_min_hop_limit = 1 net.ipv6.conf.bond1.accept_ra_mtu = 1 net.ipv6.conf.bond1.accept_ra_pinfo = 1 net.ipv6.conf.bond1.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.bond1.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.bond1.accept_ra_rtr_pref = 1 net.ipv6.conf.bond1.accept_redirects = 1 net.ipv6.conf.bond1.accept_source_route = 0 net.ipv6.conf.bond1.addr_gen_mode = 0 net.ipv6.conf.bond1.autoconf = 1 net.ipv6.conf.bond1.dad_transmits = 1 net.ipv6.conf.bond1.disable_ipv6 = 1 net.ipv6.conf.bond1.disable_policy = 0 net.ipv6.conf.bond1.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.bond1.drop_unsolicited_na = 0 net.ipv6.conf.bond1.enhanced_dad = 1 net.ipv6.conf.bond1.force_mld_version = 0 net.ipv6.conf.bond1.force_tllao = 0 net.ipv6.conf.bond1.forwarding = 0 net.ipv6.conf.bond1.hop_limit = 64 net.ipv6.conf.bond1.ignore_routes_with_linkdown = 0 net.ipv6.conf.bond1.keep_addr_on_down = 0 net.ipv6.conf.bond1.max_addresses = 16 net.ipv6.conf.bond1.max_desync_factor = 600 net.ipv6.conf.bond1.mc_forwarding = 0 net.ipv6.conf.bond1.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.bond1.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.bond1.mtu = 1500 net.ipv6.conf.bond1.ndisc_notify = 0 net.ipv6.conf.bond1.ndisc_tclass = 0 net.ipv6.conf.bond1.optimistic_dad = 0 net.ipv6.conf.bond1.proxy_ndp = 0 net.ipv6.conf.bond1.regen_max_retry = 3 net.ipv6.conf.bond1.router_probe_interval = 60 net.ipv6.conf.bond1.router_solicitation_delay = 1 net.ipv6.conf.bond1.router_solicitation_interval = 4 net.ipv6.conf.bond1.router_solicitation_max_interval = 3600 net.ipv6.conf.bond1.router_solicitations = -1 net.ipv6.conf.bond1.seg6_enabled = 0 net.ipv6.conf.bond1.suppress_frag_ndisc = 1 net.ipv6.conf.bond1.temp_prefered_lft = 86400 net.ipv6.conf.bond1.temp_valid_lft = 604800 net.ipv6.conf.bond1.use_oif_addrs_only = 0 net.ipv6.conf.bond1.use_optimistic = 0 net.ipv6.conf.bond1.use_tempaddr = 0 net.ipv6.conf.default.accept_dad = 1 net.ipv6.conf.default.accept_ra = 0 net.ipv6.conf.default.accept_ra_defrtr = 1 net.ipv6.conf.default.accept_ra_from_local = 0 net.ipv6.conf.default.accept_ra_min_hop_limit = 1 net.ipv6.conf.default.accept_ra_mtu = 1 net.ipv6.conf.default.accept_ra_pinfo = 1 net.ipv6.conf.default.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.default.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.default.accept_ra_rtr_pref = 1 net.ipv6.conf.default.accept_redirects = 1 net.ipv6.conf.default.accept_source_route = 0 net.ipv6.conf.default.addr_gen_mode = 0 net.ipv6.conf.default.autoconf = 0 net.ipv6.conf.default.dad_transmits = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.default.disable_policy = 0 net.ipv6.conf.default.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.default.drop_unsolicited_na = 0 net.ipv6.conf.default.enhanced_dad = 1 net.ipv6.conf.default.force_mld_version = 0 net.ipv6.conf.default.force_tllao = 0 net.ipv6.conf.default.forwarding = 0 net.ipv6.conf.default.hop_limit = 64 net.ipv6.conf.default.ignore_routes_with_linkdown = 0 net.ipv6.conf.default.keep_addr_on_down = 0 net.ipv6.conf.default.max_addresses = 16 net.ipv6.conf.default.max_desync_factor = 600 net.ipv6.conf.default.mc_forwarding = 0 net.ipv6.conf.default.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.default.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.default.mtu = 1280 net.ipv6.conf.default.ndisc_notify = 0 net.ipv6.conf.default.ndisc_tclass = 0 net.ipv6.conf.default.optimistic_dad = 0 net.ipv6.conf.default.proxy_ndp = 0 net.ipv6.conf.default.regen_max_retry = 3 net.ipv6.conf.default.router_probe_interval = 60 net.ipv6.conf.default.router_solicitation_delay = 1 net.ipv6.conf.default.router_solicitation_interval = 4 net.ipv6.conf.default.router_solicitation_max_interval = 3600 net.ipv6.conf.default.router_solicitations = -1 net.ipv6.conf.default.seg6_enabled = 0 net.ipv6.conf.default.suppress_frag_ndisc = 1 net.ipv6.conf.default.temp_prefered_lft = 86400 net.ipv6.conf.default.temp_valid_lft = 604800 net.ipv6.conf.default.use_oif_addrs_only = 0 net.ipv6.conf.default.use_optimistic = 0 net.ipv6.conf.default.use_tempaddr = 0 net.ipv6.conf.ens1f0np0.accept_dad = 1 net.ipv6.conf.ens1f0np0.accept_ra = 1 net.ipv6.conf.ens1f0np0.accept_ra_defrtr = 1 net.ipv6.conf.ens1f0np0.accept_ra_from_local = 0 net.ipv6.conf.ens1f0np0.accept_ra_min_hop_limit = 1 net.ipv6.conf.ens1f0np0.accept_ra_mtu = 1 net.ipv6.conf.ens1f0np0.accept_ra_pinfo = 1 net.ipv6.conf.ens1f0np0.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.ens1f0np0.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.ens1f0np0.accept_ra_rtr_pref = 1 net.ipv6.conf.ens1f0np0.accept_redirects = 1 net.ipv6.conf.ens1f0np0.accept_source_route = 0 net.ipv6.conf.ens1f0np0.addr_gen_mode = 0 net.ipv6.conf.ens1f0np0.autoconf = 1 net.ipv6.conf.ens1f0np0.dad_transmits = 1 net.ipv6.conf.ens1f0np0.disable_ipv6 = 1 net.ipv6.conf.ens1f0np0.disable_policy = 0 net.ipv6.conf.ens1f0np0.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.ens1f0np0.drop_unsolicited_na = 0 net.ipv6.conf.ens1f0np0.enhanced_dad = 1 net.ipv6.conf.ens1f0np0.force_mld_version = 0 net.ipv6.conf.ens1f0np0.force_tllao = 0 net.ipv6.conf.ens1f0np0.forwarding = 0 net.ipv6.conf.ens1f0np0.hop_limit = 64 net.ipv6.conf.ens1f0np0.ignore_routes_with_linkdown = 0 net.ipv6.conf.ens1f0np0.keep_addr_on_down = 0 net.ipv6.conf.ens1f0np0.max_addresses = 16 net.ipv6.conf.ens1f0np0.max_desync_factor = 600 net.ipv6.conf.ens1f0np0.mc_forwarding = 0 net.ipv6.conf.ens1f0np0.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.ens1f0np0.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.ens1f0np0.mtu = 1500 net.ipv6.conf.ens1f0np0.ndisc_notify = 0 net.ipv6.conf.ens1f0np0.ndisc_tclass = 0 net.ipv6.conf.ens1f0np0.optimistic_dad = 0 net.ipv6.conf.ens1f0np0.proxy_ndp = 0 net.ipv6.conf.ens1f0np0.regen_max_retry = 3 net.ipv6.conf.ens1f0np0.router_probe_interval = 60 net.ipv6.conf.ens1f0np0.router_solicitation_delay = 1 net.ipv6.conf.ens1f0np0.router_solicitation_interval = 4 net.ipv6.conf.ens1f0np0.router_solicitation_max_interval = 3600 net.ipv6.conf.ens1f0np0.router_solicitations = -1 net.ipv6.conf.ens1f0np0.seg6_enabled = 0 net.ipv6.conf.ens1f0np0.suppress_frag_ndisc = 1 net.ipv6.conf.ens1f0np0.temp_prefered_lft = 86400 net.ipv6.conf.ens1f0np0.temp_valid_lft = 604800 net.ipv6.conf.ens1f0np0.use_oif_addrs_only = 0 net.ipv6.conf.ens1f0np0.use_optimistic = 0 net.ipv6.conf.ens1f0np0.use_tempaddr = 0 net.ipv6.conf.ens1f1np1.accept_dad = 1 net.ipv6.conf.ens1f1np1.accept_ra = 1 net.ipv6.conf.ens1f1np1.accept_ra_defrtr = 1 net.ipv6.conf.ens1f1np1.accept_ra_from_local = 0 net.ipv6.conf.ens1f1np1.accept_ra_min_hop_limit = 1 net.ipv6.conf.ens1f1np1.accept_ra_mtu = 1 net.ipv6.conf.ens1f1np1.accept_ra_pinfo = 1 net.ipv6.conf.ens1f1np1.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.ens1f1np1.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.ens1f1np1.accept_ra_rtr_pref = 1 net.ipv6.conf.ens1f1np1.accept_redirects = 1 net.ipv6.conf.ens1f1np1.accept_source_route = 0 net.ipv6.conf.ens1f1np1.addr_gen_mode = 0 net.ipv6.conf.ens1f1np1.autoconf = 1 net.ipv6.conf.ens1f1np1.dad_transmits = 1 net.ipv6.conf.ens1f1np1.disable_ipv6 = 1 net.ipv6.conf.ens1f1np1.disable_policy = 0 net.ipv6.conf.ens1f1np1.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.ens1f1np1.drop_unsolicited_na = 0 net.ipv6.conf.ens1f1np1.enhanced_dad = 1 net.ipv6.conf.ens1f1np1.force_mld_version = 0 net.ipv6.conf.ens1f1np1.force_tllao = 0 net.ipv6.conf.ens1f1np1.forwarding = 0 net.ipv6.conf.ens1f1np1.hop_limit = 64 net.ipv6.conf.ens1f1np1.ignore_routes_with_linkdown = 0 net.ipv6.conf.ens1f1np1.keep_addr_on_down = 0 net.ipv6.conf.ens1f1np1.max_addresses = 16 net.ipv6.conf.ens1f1np1.max_desync_factor = 600 net.ipv6.conf.ens1f1np1.mc_forwarding = 0 net.ipv6.conf.ens1f1np1.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.ens1f1np1.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.ens1f1np1.mtu = 1500 net.ipv6.conf.ens1f1np1.ndisc_notify = 0 net.ipv6.conf.ens1f1np1.ndisc_tclass = 0 net.ipv6.conf.ens1f1np1.optimistic_dad = 0 net.ipv6.conf.ens1f1np1.proxy_ndp = 0 net.ipv6.conf.ens1f1np1.regen_max_retry = 3 net.ipv6.conf.ens1f1np1.router_probe_interval = 60 net.ipv6.conf.ens1f1np1.router_solicitation_delay = 1 net.ipv6.conf.ens1f1np1.router_solicitation_interval = 4 net.ipv6.conf.ens1f1np1.router_solicitation_max_interval = 3600 net.ipv6.conf.ens1f1np1.router_solicitations = -1 net.ipv6.conf.ens1f1np1.seg6_enabled = 0 net.ipv6.conf.ens1f1np1.suppress_frag_ndisc = 1 net.ipv6.conf.ens1f1np1.temp_prefered_lft = 86400 net.ipv6.conf.ens1f1np1.temp_valid_lft = 604800 net.ipv6.conf.ens1f1np1.use_oif_addrs_only = 0 net.ipv6.conf.ens1f1np1.use_optimistic = 0 net.ipv6.conf.ens1f1np1.use_tempaddr = 0 net.ipv6.conf.ens3f0.accept_dad = 1 net.ipv6.conf.ens3f0.accept_ra = 0 net.ipv6.conf.ens3f0.accept_ra_defrtr = 1 net.ipv6.conf.ens3f0.accept_ra_from_local = 0 net.ipv6.conf.ens3f0.accept_ra_min_hop_limit = 1 net.ipv6.conf.ens3f0.accept_ra_mtu = 1 net.ipv6.conf.ens3f0.accept_ra_pinfo = 1 net.ipv6.conf.ens3f0.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.ens3f0.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.ens3f0.accept_ra_rtr_pref = 1 net.ipv6.conf.ens3f0.accept_redirects = 0 net.ipv6.conf.ens3f0.accept_source_route = 0 net.ipv6.conf.ens3f0.addr_gen_mode = 0 net.ipv6.conf.ens3f0.autoconf = 1 net.ipv6.conf.ens3f0.dad_transmits = 1 net.ipv6.conf.ens3f0.disable_ipv6 = 1 net.ipv6.conf.ens3f0.disable_policy = 0 net.ipv6.conf.ens3f0.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.ens3f0.drop_unsolicited_na = 0 net.ipv6.conf.ens3f0.enhanced_dad = 1 net.ipv6.conf.ens3f0.force_mld_version = 0 net.ipv6.conf.ens3f0.force_tllao = 0 net.ipv6.conf.ens3f0.forwarding = 0 net.ipv6.conf.ens3f0.hop_limit = 64 net.ipv6.conf.ens3f0.ignore_routes_with_linkdown = 0 net.ipv6.conf.ens3f0.keep_addr_on_down = 0 net.ipv6.conf.ens3f0.max_addresses = 16 net.ipv6.conf.ens3f0.max_desync_factor = 600 net.ipv6.conf.ens3f0.mc_forwarding = 0 net.ipv6.conf.ens3f0.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.ens3f0.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.ens3f0.mtu = 1500 net.ipv6.conf.ens3f0.ndisc_notify = 0 net.ipv6.conf.ens3f0.ndisc_tclass = 0 net.ipv6.conf.ens3f0.optimistic_dad = 0 net.ipv6.conf.ens3f0.proxy_ndp = 0 net.ipv6.conf.ens3f0.regen_max_retry = 3 net.ipv6.conf.ens3f0.router_probe_interval = 60 net.ipv6.conf.ens3f0.router_solicitation_delay = 1 net.ipv6.conf.ens3f0.router_solicitation_interval = 4 net.ipv6.conf.ens3f0.router_solicitation_max_interval = 3600 net.ipv6.conf.ens3f0.router_solicitations = -1 net.ipv6.conf.ens3f0.seg6_enabled = 0 net.ipv6.conf.ens3f0.suppress_frag_ndisc = 1 net.ipv6.conf.ens3f0.temp_prefered_lft = 86400 net.ipv6.conf.ens3f0.temp_valid_lft = 604800 net.ipv6.conf.ens3f0.use_oif_addrs_only = 0 net.ipv6.conf.ens3f0.use_optimistic = 0 net.ipv6.conf.ens3f0.use_tempaddr = 0 net.ipv6.conf.ens3f1.accept_dad = 1 net.ipv6.conf.ens3f1.accept_ra = 0 net.ipv6.conf.ens3f1.accept_ra_defrtr = 1 net.ipv6.conf.ens3f1.accept_ra_from_local = 0 net.ipv6.conf.ens3f1.accept_ra_min_hop_limit = 1 net.ipv6.conf.ens3f1.accept_ra_mtu = 1 net.ipv6.conf.ens3f1.accept_ra_pinfo = 1 net.ipv6.conf.ens3f1.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.ens3f1.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.ens3f1.accept_ra_rtr_pref = 1 net.ipv6.conf.ens3f1.accept_redirects = 0 net.ipv6.conf.ens3f1.accept_source_route = 0 net.ipv6.conf.ens3f1.addr_gen_mode = 0 net.ipv6.conf.ens3f1.autoconf = 1 net.ipv6.conf.ens3f1.dad_transmits = 1 net.ipv6.conf.ens3f1.disable_ipv6 = 1 net.ipv6.conf.ens3f1.disable_policy = 0 net.ipv6.conf.ens3f1.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.ens3f1.drop_unsolicited_na = 0 net.ipv6.conf.ens3f1.enhanced_dad = 1 net.ipv6.conf.ens3f1.force_mld_version = 0 net.ipv6.conf.ens3f1.force_tllao = 0 net.ipv6.conf.ens3f1.forwarding = 0 net.ipv6.conf.ens3f1.hop_limit = 64 net.ipv6.conf.ens3f1.ignore_routes_with_linkdown = 0 net.ipv6.conf.ens3f1.keep_addr_on_down = 0 net.ipv6.conf.ens3f1.max_addresses = 16 net.ipv6.conf.ens3f1.max_desync_factor = 600 net.ipv6.conf.ens3f1.mc_forwarding = 0 net.ipv6.conf.ens3f1.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.ens3f1.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.ens3f1.mtu = 1500 net.ipv6.conf.ens3f1.ndisc_notify = 0 net.ipv6.conf.ens3f1.ndisc_tclass = 0 net.ipv6.conf.ens3f1.optimistic_dad = 0 net.ipv6.conf.ens3f1.proxy_ndp = 0 net.ipv6.conf.ens3f1.regen_max_retry = 3 net.ipv6.conf.ens3f1.router_probe_interval = 60 net.ipv6.conf.ens3f1.router_solicitation_delay = 1 net.ipv6.conf.ens3f1.router_solicitation_interval = 4 net.ipv6.conf.ens3f1.router_solicitation_max_interval = 3600 net.ipv6.conf.ens3f1.router_solicitations = -1 net.ipv6.conf.ens3f1.seg6_enabled = 0 net.ipv6.conf.ens3f1.suppress_frag_ndisc = 1 net.ipv6.conf.ens3f1.temp_prefered_lft = 86400 net.ipv6.conf.ens3f1.temp_valid_lft = 604800 net.ipv6.conf.ens3f1.use_oif_addrs_only = 0 net.ipv6.conf.ens3f1.use_optimistic = 0 net.ipv6.conf.ens3f1.use_tempaddr = 0 net.ipv6.conf.lo.accept_dad = -1 net.ipv6.conf.lo.accept_ra = 1 net.ipv6.conf.lo.accept_ra_defrtr = 1 net.ipv6.conf.lo.accept_ra_from_local = 0 net.ipv6.conf.lo.accept_ra_min_hop_limit = 1 net.ipv6.conf.lo.accept_ra_mtu = 1 net.ipv6.conf.lo.accept_ra_pinfo = 1 net.ipv6.conf.lo.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.lo.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.lo.accept_ra_rtr_pref = 1 net.ipv6.conf.lo.accept_redirects = 1 net.ipv6.conf.lo.accept_source_route = 0 net.ipv6.conf.lo.addr_gen_mode = 0 net.ipv6.conf.lo.autoconf = 1 net.ipv6.conf.lo.dad_transmits = 1 net.ipv6.conf.lo.disable_ipv6 = 1 net.ipv6.conf.lo.disable_policy = 0 net.ipv6.conf.lo.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.lo.drop_unsolicited_na = 0 net.ipv6.conf.lo.enhanced_dad = 1 net.ipv6.conf.lo.force_mld_version = 0 net.ipv6.conf.lo.force_tllao = 0 net.ipv6.conf.lo.forwarding = 0 net.ipv6.conf.lo.hop_limit = 64 net.ipv6.conf.lo.ignore_routes_with_linkdown = 0 net.ipv6.conf.lo.keep_addr_on_down = 0 net.ipv6.conf.lo.max_addresses = 16 net.ipv6.conf.lo.max_desync_factor = 600 net.ipv6.conf.lo.mc_forwarding = 0 net.ipv6.conf.lo.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.lo.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.lo.mtu = 65536 net.ipv6.conf.lo.ndisc_notify = 0 net.ipv6.conf.lo.ndisc_tclass = 0 net.ipv6.conf.lo.optimistic_dad = 0 net.ipv6.conf.lo.proxy_ndp = 0 net.ipv6.conf.lo.regen_max_retry = 3 net.ipv6.conf.lo.router_probe_interval = 60 net.ipv6.conf.lo.router_solicitation_delay = 1 net.ipv6.conf.lo.router_solicitation_interval = 4 net.ipv6.conf.lo.router_solicitation_max_interval = 3600 net.ipv6.conf.lo.router_solicitations = -1 net.ipv6.conf.lo.seg6_enabled = 0 net.ipv6.conf.lo.suppress_frag_ndisc = 1 net.ipv6.conf.lo.temp_prefered_lft = 86400 net.ipv6.conf.lo.temp_valid_lft = 604800 net.ipv6.conf.lo.use_oif_addrs_only = 0 net.ipv6.conf.lo.use_optimistic = 0 net.ipv6.conf.lo.use_tempaddr = -1 net.ipv6.fib_multipath_hash_policy = 0 net.ipv6.flowlabel_consistency = 1 net.ipv6.flowlabel_reflect = 0 net.ipv6.flowlabel_state_ranges = 0 net.ipv6.fwmark_reflect = 0 net.ipv6.icmp.ratelimit = 1000 net.ipv6.idgen_delay = 1 net.ipv6.idgen_retries = 3 net.ipv6.ip6frag_high_thresh = 4194304 net.ipv6.ip6frag_low_thresh = 3145728 net.ipv6.ip6frag_secret_interval = 0 net.ipv6.ip6frag_time = 60 net.ipv6.ip_nonlocal_bind = 0 net.ipv6.max_dst_opts_length = 2147483647 net.ipv6.max_dst_opts_number = 8 net.ipv6.max_hbh_length = 2147483647 net.ipv6.max_hbh_opts_number = 8 net.ipv6.mld_max_msf = 64 net.ipv6.mld_qrv = 2 net.ipv6.neigh.bond0.anycast_delay = 100 net.ipv6.neigh.bond0.app_solicit = 0 net.ipv6.neigh.bond0.base_reachable_time_ms = 30000 net.ipv6.neigh.bond0.delay_first_probe_time = 5 net.ipv6.neigh.bond0.gc_stale_time = 60 net.ipv6.neigh.bond0.locktime = 0 net.ipv6.neigh.bond0.mcast_resolicit = 0 net.ipv6.neigh.bond0.mcast_solicit = 3 net.ipv6.neigh.bond0.proxy_delay = 80 net.ipv6.neigh.bond0.proxy_qlen = 64 net.ipv6.neigh.bond0.retrans_time_ms = 1000 net.ipv6.neigh.bond0.ucast_solicit = 3 net.ipv6.neigh.bond0.unres_qlen = 101 net.ipv6.neigh.bond0.unres_qlen_bytes = 212992 net.ipv6.neigh.bond1.anycast_delay = 100 net.ipv6.neigh.bond1.app_solicit = 0 net.ipv6.neigh.bond1.base_reachable_time_ms = 30000 net.ipv6.neigh.bond1.delay_first_probe_time = 5 net.ipv6.neigh.bond1.gc_stale_time = 60 net.ipv6.neigh.bond1.locktime = 0 net.ipv6.neigh.bond1.mcast_resolicit = 0 net.ipv6.neigh.bond1.mcast_solicit = 3 net.ipv6.neigh.bond1.proxy_delay = 80 net.ipv6.neigh.bond1.proxy_qlen = 64 net.ipv6.neigh.bond1.retrans_time_ms = 1000 net.ipv6.neigh.bond1.ucast_solicit = 3 net.ipv6.neigh.bond1.unres_qlen = 101 net.ipv6.neigh.bond1.unres_qlen_bytes = 212992 net.ipv6.neigh.default.anycast_delay = 100 net.ipv6.neigh.default.app_solicit = 0 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.locktime = 0 net.ipv6.neigh.default.mcast_resolicit = 0 net.ipv6.neigh.default.mcast_solicit = 3 net.ipv6.neigh.default.proxy_delay = 80 net.ipv6.neigh.default.proxy_qlen = 64 net.ipv6.neigh.default.retrans_time_ms = 1000 net.ipv6.neigh.default.ucast_solicit = 3 net.ipv6.neigh.default.unres_qlen = 101 net.ipv6.neigh.default.unres_qlen_bytes = 212992 net.ipv6.neigh.ens1f0np0.anycast_delay = 100 net.ipv6.neigh.ens1f0np0.app_solicit = 0 net.ipv6.neigh.ens1f0np0.base_reachable_time_ms = 30000 net.ipv6.neigh.ens1f0np0.delay_first_probe_time = 5 net.ipv6.neigh.ens1f0np0.gc_stale_time = 60 net.ipv6.neigh.ens1f0np0.locktime = 0 net.ipv6.neigh.ens1f0np0.mcast_resolicit = 0 net.ipv6.neigh.ens1f0np0.mcast_solicit = 3 net.ipv6.neigh.ens1f0np0.proxy_delay = 80 net.ipv6.neigh.ens1f0np0.proxy_qlen = 64 net.ipv6.neigh.ens1f0np0.retrans_time_ms = 1000 net.ipv6.neigh.ens1f0np0.ucast_solicit = 3 net.ipv6.neigh.ens1f0np0.unres_qlen = 101 net.ipv6.neigh.ens1f0np0.unres_qlen_bytes = 212992 net.ipv6.neigh.ens1f1np1.anycast_delay = 100 net.ipv6.neigh.ens1f1np1.app_solicit = 0 net.ipv6.neigh.ens1f1np1.base_reachable_time_ms = 30000 net.ipv6.neigh.ens1f1np1.delay_first_probe_time = 5 net.ipv6.neigh.ens1f1np1.gc_stale_time = 60 net.ipv6.neigh.ens1f1np1.locktime = 0 net.ipv6.neigh.ens1f1np1.mcast_resolicit = 0 net.ipv6.neigh.ens1f1np1.mcast_solicit = 3 net.ipv6.neigh.ens1f1np1.proxy_delay = 80 net.ipv6.neigh.ens1f1np1.proxy_qlen = 64 net.ipv6.neigh.ens1f1np1.retrans_time_ms = 1000 net.ipv6.neigh.ens1f1np1.ucast_solicit = 3 net.ipv6.neigh.ens1f1np1.unres_qlen = 101 net.ipv6.neigh.ens1f1np1.unres_qlen_bytes = 212992 net.ipv6.neigh.ens3f0.anycast_delay = 100 net.ipv6.neigh.ens3f0.app_solicit = 0 net.ipv6.neigh.ens3f0.base_reachable_time_ms = 30000 net.ipv6.neigh.ens3f0.delay_first_probe_time = 5 net.ipv6.neigh.ens3f0.gc_stale_time = 60 net.ipv6.neigh.ens3f0.locktime = 0 net.ipv6.neigh.ens3f0.mcast_resolicit = 0 net.ipv6.neigh.ens3f0.mcast_solicit = 3 net.ipv6.neigh.ens3f0.proxy_delay = 80 net.ipv6.neigh.ens3f0.proxy_qlen = 64 net.ipv6.neigh.ens3f0.retrans_time_ms = 1000 net.ipv6.neigh.ens3f0.ucast_solicit = 3 net.ipv6.neigh.ens3f0.unres_qlen = 101 net.ipv6.neigh.ens3f0.unres_qlen_bytes = 212992 net.ipv6.neigh.ens3f1.anycast_delay = 100 net.ipv6.neigh.ens3f1.app_solicit = 0 net.ipv6.neigh.ens3f1.base_reachable_time_ms = 30000 net.ipv6.neigh.ens3f1.delay_first_probe_time = 5 net.ipv6.neigh.ens3f1.gc_stale_time = 60 net.ipv6.neigh.ens3f1.locktime = 0 net.ipv6.neigh.ens3f1.mcast_resolicit = 0 net.ipv6.neigh.ens3f1.mcast_solicit = 3 net.ipv6.neigh.ens3f1.proxy_delay = 80 net.ipv6.neigh.ens3f1.proxy_qlen = 64 net.ipv6.neigh.ens3f1.retrans_time_ms = 1000 net.ipv6.neigh.ens3f1.ucast_solicit = 3 net.ipv6.neigh.ens3f1.unres_qlen = 101 net.ipv6.neigh.ens3f1.unres_qlen_bytes = 212992 net.ipv6.neigh.lo.anycast_delay = 100 net.ipv6.neigh.lo.app_solicit = 0 net.ipv6.neigh.lo.base_reachable_time_ms = 30000 net.ipv6.neigh.lo.delay_first_probe_time = 5 net.ipv6.neigh.lo.gc_stale_time = 60 net.ipv6.neigh.lo.locktime = 0 net.ipv6.neigh.lo.mcast_resolicit = 0 net.ipv6.neigh.lo.mcast_solicit = 3 net.ipv6.neigh.lo.proxy_delay = 80 net.ipv6.neigh.lo.proxy_qlen = 64 net.ipv6.neigh.lo.retrans_time_ms = 1000 net.ipv6.neigh.lo.ucast_solicit = 3 net.ipv6.neigh.lo.unres_qlen = 101 net.ipv6.neigh.lo.unres_qlen_bytes = 212992 net.ipv6.route.gc_elasticity = 9 net.ipv6.route.gc_interval = 30 net.ipv6.route.gc_min_interval = 0 net.ipv6.route.gc_min_interval_ms = 500 net.ipv6.route.gc_thresh = 1024 net.ipv6.route.gc_timeout = 60 net.ipv6.route.max_size = 4096 net.ipv6.route.min_adv_mss = 1220 net.ipv6.route.mtu_expires = 600 net.ipv6.seg6_flowlabel = 0 net.ipv6.xfrm6_gc_thresh = 32768 net.iw_cm.default_backlog = 256 net.mptcp.add_addr_timeout = 120 net.mptcp.enabled = 0 net.netfilter.nf_log.0 = NONE net.netfilter.nf_log.1 = NONE net.netfilter.nf_log.10 = NONE net.netfilter.nf_log.11 = NONE net.netfilter.nf_log.12 = NONE net.netfilter.nf_log.2 = NONE net.netfilter.nf_log.3 = NONE net.netfilter.nf_log.4 = NONE net.netfilter.nf_log.5 = NONE net.netfilter.nf_log.6 = NONE net.netfilter.nf_log.7 = NONE net.netfilter.nf_log.8 = NONE net.netfilter.nf_log.9 = NONE net.netfilter.nf_log_all_netns = 0 net.rdma_ucm.max_backlog = 1024 net.unix.max_dgram_qlen = 512 sunrpc.max_resvport = 1023 sunrpc.min_resvport = 665 sunrpc.nfs_debug = 0x0000 sunrpc.nfsd_debug = 0x0000 sunrpc.nlm_debug = 0x0000 sunrpc.rdma_inline_write_padding = 0 sunrpc.rdma_max_inline_read = 4096 sunrpc.rdma_max_inline_write = 4096 sunrpc.rdma_memreg_strategy = 5 sunrpc.rdma_pad_optimize = 0 sunrpc.rdma_slot_table_entries = 128 sunrpc.rpc_debug = 0x0000 sunrpc.svc_rdma.max_outbound_read_requests = 16 sunrpc.svc_rdma.max_req_size = 4096 sunrpc.svc_rdma.max_requests = 64 sunrpc.svc_rdma.rdma_stat_read = 0 sunrpc.svc_rdma.rdma_stat_recv = 0 sunrpc.svc_rdma.rdma_stat_rq_poll = 0 sunrpc.svc_rdma.rdma_stat_rq_prod = 0 sunrpc.svc_rdma.rdma_stat_rq_starve = 0 sunrpc.svc_rdma.rdma_stat_sq_poll = 0 sunrpc.svc_rdma.rdma_stat_sq_prod = 0 sunrpc.svc_rdma.rdma_stat_sq_starve = 0 sunrpc.svc_rdma.rdma_stat_write = 0 sunrpc.tcp_fin_timeout = 15 sunrpc.tcp_max_slot_table_entries = 65536 sunrpc.tcp_slot_table_entries = 2 sunrpc.transports = tcp 1048576 sunrpc.transports = udp 32768 sunrpc.transports = rdma 1048576 sunrpc.udp_slot_table_entries = 16 user.max_cgroup_namespaces = 1028865 user.max_inotify_instances = 128 user.max_inotify_watches = 1048576 user.max_ipc_namespaces = 1028865 user.max_mnt_namespaces = 1028865 user.max_net_namespaces = 1028865 user.max_pid_namespaces = 1028865 user.max_time_namespaces = 1028865 user.max_user_namespaces = 1028865 user.max_uts_namespaces = 1028865 vm.admin_reserve_kbytes = 8192 vm.block_dump = 0 vm.compact_unevictable_allowed = 1 vm.compaction_proactiveness = 0 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 40 vm.dirty_writeback_centisecs = 500 vm.dirtytime_expire_seconds = 43200 vm.drop_caches = 0 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 0 vm.max_map_count = 65530 vm.memory_failure_early_kill = 0 vm.memory_failure_recovery = 1 vm.min_free_kbytes = 2054760 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 4096 vm.mmap_rnd_bits = 28 vm.mmap_rnd_compat_bits = 8 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 3 vm.panic_on_oom = 0 vm.percpu_pagelist_fraction = 0 vm.stat_interval = 1 vm.swappiness = 10 vm.user_reserve_kbytes = 131072 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0
_______________________________________________ ceph-users mailing list -- ceph-users@xxxxxxx To unsubscribe send an email to ceph-users-leave@xxxxxxx