投稿時間:2021-06-03 01:33:25 RSSフィード2021-06-03 01:00 分まとめ(35件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「iPhone 13」と「iPhone 13 Pro」のCADファイルが公開される https://taisy0.com/2021/06/03/141293.html iphone 2021-06-02 15:05:06
TECH Engadget Japanese ファーウェイ、HarmonyOS搭載のMatePad Pro/11を海外発表 https://japanese.engadget.com/huawei-matepad-pro-11-152520739.html harmony 2021-06-02 15:25:20
AWS AWS Machine Learning Blog DeepLearning.AI, Coursera, and AWS launch the new Practical Data Science Specialization with Amazon SageMaker https://aws.amazon.com/blogs/machine-learning/deeplearning-ai-coursera-and-aws-launch-the-new-practical-data-science-specialization-with-amazon-sagemaker/ DeepLearning AI Coursera and AWS launch the new Practical Data Science Specialization with Amazon SageMakerAmazon Web Services AWS Coursera and DeepLearning AI are excited to announce Practical Data Science a three course week hands on specialization designed for data professionals to quickly learn the essentials of machine learning ML in the AWS Cloud DeepLearning AI was founded in by Andrew Ng an ML and education pioneer to fill a need for world class … 2021-06-02 15:59:48
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Reactのアプリをherokuにデプロイしたのですが、フロント(client)フォルダがビルドされず空です。 https://teratail.com/questions/341838?rss=all Reactのアプリをherokuにデプロイしたのですが、フロントclientフォルダがビルドされず空です。 2021-06-03 00:51:18
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) キャッシュを無視してリロードをさせたい https://teratail.com/questions/341837?rss=all キャッシュを無視してリロードをさせたいVueにてキャッシュを無視してリロードをさせたいpostvueにて投稿内容を追加して、boardbueにてpostデータを取得して表示させています。 2021-06-03 00:35:41
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) セレクトボックスの初期値(selected)を変数指定する。 https://teratail.com/questions/341836?rss=all selected 2021-06-03 00:30:27
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Unity 3Dobject の Event triggerにて関数の表示方法 https://teratail.com/questions/341835?rss=all UnityDobjectのEventtriggerにて関数の表示方法Unityを勉強しております初学者です。 2021-06-03 00:28:23
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 実行しても何も起こらない https://teratail.com/questions/341834?rss=all 実行しても何も起こらない前提・実現したいこと実行しても何も起こらなくなってしまいました。 2021-06-03 00:24:51
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Pythonで変数が全く定義されない https://teratail.com/questions/341833?rss=all Pythonで変数が全く定義されない前提・実現したいこと超初心者です。 2021-06-03 00:12:56
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) ip route delete default via 10.0.2.2 をしてもip routeの表示が変わらない. https://teratail.com/questions/341832?rss=all 2021-06-03 00:07:29
Ruby Rubyタグが付けられた新着投稿 - Qiita 【備忘録】AWS Cloud9を用いたIDE環境構築 https://qiita.com/pensuke628/items/3cae3e0b2fe52e62589c 今回はAWSにログインし、チュートリアルを実行するためのワークスペースを作成するまでの手順を記録します。 2021-06-03 00:59:28
Git Gitタグが付けられた新着投稿 - Qiita Gitでcloneしてから自分のブランチを作成するまでの流れ https://qiita.com/kurogoma939/items/cf680d6172c30839a1a4 Gitでcloneしてから自分のブランチを作成するまでの流れ記事を作成した経緯プログラミングの課題管理をする際に、Githubで管理したいということで説明用に記事を作成しました。 2021-06-03 00:55:12
Ruby Railsタグが付けられた新着投稿 - Qiita 【備忘録】AWS Cloud9を用いたIDE環境構築 https://qiita.com/pensuke628/items/3cae3e0b2fe52e62589c 今回はAWSにログインし、チュートリアルを実行するためのワークスペースを作成するまでの手順を記録します。 2021-06-03 00:59:28
海外TECH Ars Technica Amazon Prime Day 2021 runs June 21-22, and a few deals are already live https://arstechnica.com/?p=1769122 amazon 2021-06-02 15:17:14
海外TECH DEV Community Boolean Logic in Javascript 🤓 https://dev.to/elpepebenitez/boolean-logic-in-javascript-103d Boolean Logic in Javascript Hi Programming can be overwhelming but once you are comfortable with some basic concepts it starts to feel like a superpower ‍ ️and Javascript is one of the coolest languages to learn In this document you can find a summary of using Boolean Logic in Javascript We will cover What are booleans Conditional StatementsTruthy and Falsy valuesComparison operatorsLogical operatorsLoopingIf you need help with your setup you can find some help here What are booleans Booleans are part of what we call primitive data types in javascript This data type only has two possible valuesーeither true or false  without quotes It s helpful to think of booleans as on and off switches or as the answers to a “yes or “no question Boolean MDN Web Docs Glossary Definitions of Web related terms MDN Conditional Statementsif else decisions can be modeled in code by creating conditional statements A conditional statement checks a specific condition s and performs a task based on the condition s If StatementIn programming we can perform a task based on a condition using an if statement if true console log This message will print Prints This message will print Notice in the example above we have an ifstatement The if statement is composed of The if keyword followed by a set of parentheses   which is followed by a code block or block statement indicated by a set of curly braces  Inside the parentheses  a condition is provided that evaluates to true or false If the condition evaluates to true the code inside the curly braces   runs or executes If the condition evaluates to false the block won t execute If else StatementsIf we wanted to add some default behavior to the if statement we can add an else statement to run a block of code when the condition evaluates to false if false console log The code in this block will not run else console log But the code in this block will Prints But the code in this block will An else statement must be paired with an ifstatement and together they are referred to as an if else statement In the example above the else statement Uses the else keyword following the code block of an if statement Has a code block that is wrapped by a set of curly braces  The code inside the else statement code block will execute when the if statement s condition evaluates to false if else statements allow us to automate solutions to yes or no questions also known as binary decisions If else if else StatementsWe can add more conditions to our if else with an else if statement The else if statement always comes after the if statement and before the else statement The else if statement also takes a condition let stopLight yellow if stopLight red console log Stop else if stopLight yellow console log Slow down else if stopLight green console log Go else console log Caution unknown The else if statements allow you to have multiple possible outcomes if else if else statements are read from top to bottom so the first condition that evaluates to true from the top to bottom is the block that gets executed Truthy and Falsy ValuesSometimes you ll want to check if a variable exists and you won t necessarily want it to equal a specific value ーyou ll only check to see if the variable has been assigned a value let myVariable I Exist if myVariable console log myVariable else console log The variable does not exist The code block in the if statement will run because myVariable has a truthy value even though the value of myVariable is not explicitly the value true when used in a boolean or conditional context it evaluates to true because it has been assigned a non falsy value So which values are falsyーor evaluate to falsewhen checked as a condition The list of falsy values includes Empty strings like   or  null which represent when there is no value at allundefined which represent when a declared variable lacks a valueNaN or Not a Numberlet numberOfApples if numberOfApples console log Let us eat apples else console log No apples left Prints No apples left Truthy and Falsy AssignmentIn a boolean condition JavaScript assigns the truthy value to a variable if you use the operator in your assignment let defaultName username Stranger Because or statements check the left hand condition first the variable defaultName will be assigned the actual value of username if is truthy and it will be assigned the value of Stranger if username is falsy This concept is also referred to as short circuit evaluation Comparison OperatorsWhen writing conditional statements sometimes we need to use different types of operators to compare values These operators are called comparison operators Here is a list of some handy comparison operators and their syntax Less than   lt Greater than   gt Less than or equal to   lt Greater than or equal to   gt Is equal to   Is not equal to   Comparison operators compare the value on the left with the value on the right lt Evaluates to trueWe can also use comparison operators on different data types like strings apples oranges falseAll comparison statements evaluate to either true or false and are made up of Two values that will be compared An operator that separates the values and compares them accordingly gt   lt   lt gt Comparisons and samenesIn javascript we use to compare elements can also work but it is not strict it does not compare data types Equality comparisons and sameness Logical OperatorsWorking with conditionals means that we will be using booleans  true or false values In JavaScript there are operators that work with boolean values known as logical operators We can use logical operators to add more sophisticated logic to our conditionals There are three logical operators the and operator amp amp When we use the amp amp operator we are checking that two things are trueif stopLight green amp amp pedestrians console log Go else console log Stop the or operator If we only care about either condition being true we can use the operatorif day Saturday day Sunday console log Enjoy the weekend else console log Do some work the not operator otherwise known as the bang operator The not operator reverses or negates the value of a booleanlet excited true console log excited Prints falselet sleepy false console log sleepy Prints true LoopingWe can use booleans or statements that evaluate to booleans to run loops for a set of defined values like the elements of an array or a range of numbers or while a condition evaluates to true We can user For loops and While loops respectively The For LoopThe typical for loop includes an iterator variable that usually appears in all three expressions The iterator variable is initialized checked against the stopping condition and assigned a new value on each loop iteration Iterator variables can have any name but it s best practice to use a descriptive variable name A for loop contains three expressions separated by   inside the parentheses an initialization starts the loop and can also be used to declare the iterator variable a stopping condition is the condition that the iterator variable is evaluated againstーif the condition evaluates to true the code block will run and if it evaluates to false the code will stop an iteration statement is used to update the iterator variable on each loop The for loop syntax looks like this for let counter counter lt counter console log counter The While LoopWe start our loop with the keyword while followed by our stopping condition or test condition This will be evaluated before each round of the loop While the condition evaluates to true the block will continue to run Once it evaluates to false the loop will stop A while loop that prints and let counterTwo while counterTwo lt console log counterTwo counterTwo The syntax of a for loop is ideal when we know how many times the loop should run but we don t always know this in advance In situations when we want a loop to execute an undetermined number of times while loops are the best choice Do While StatementsA do while statement says to do a task once and then keep doing it until a specified condition is no longer met The syntax for a do while statement looks like this let countString let i do countString countString i i while i lt console log countString First the code block after the do keyword is executed once Then the condition is evaluated If the condition evaluates to true the block will execute again The looping stops when the condition evaluates to false Note that the while and do while loop are different Unlike the while loop do while will run at least once whether or not the condition evaluates to true Bonus Ternary OperatorIn the spirit of using short hand syntax we can use a ternary operator to simplify an if else statement let isNightTime true if isNightTime console log Turn on the lights else console log Turn off the lights We can use a ternary operator to perform the same functionality isNightTime console log Turn on the lights console log Turn off the lights The condition  isNightTime is provided before the  Two expressions follow the   and are separated by a colon  If the condition evaluates to true the first expression executes If the condition evaluates to false the second expression executes Like if else statements ternary operators can be used for conditions which evaluate to true or false Useful resources on JavascriptJavaScript MDNfreeCodeCamp orgJavaScript Tutorial Learn JavaScript For Free CodecademyJavaScript Code to goHi My name is Pepe and I am from Panama in Central America You can find me in linkedin twitter or github If you found this useful feel free to share it If you have any questions recommendations or general comments feel free to drop me a message 2021-06-02 15:48:59
海外TECH DEV Community My first discord bot - Cytotron https://dev.to/leviathanprogramming/my-first-discord-bot-cytotron-26i3 My first discord bot CytotronI entered a discord bot developing competition on replit hoping to win the grand prize of in bitcoin and I built this bot Cytotron is my first discord bot ever and I made it in about four days I watched a simple video on discord py and then with the help of google and stackoverflow expanded my bot to become what it is now I added tons of unique features such as a realtime updating leaderboard to keep servers active and a database for sha encryption translations and encodings If you want to see what the bot can do visit the website Lastly what would be helpful is that you add the bot to your server and give this post an upvote right here Thanks for reading I hope you enjoy my project Happy coding and Happy pride month 2021-06-02 15:42:07
海外TECH DEV Community How to add single quote in SQL query string https://dev.to/samiur29980181/how-to-add-single-quote-in-sql-query-string-5778 How to add single quote in SQL query stringIn this post we will learn about How to add single quote in sql query string when we re creating queries that contain text we use the single quote character to delimit the beginning and ending of our text value For example in this query you can see where I have a single quote that is delimiting the beginning and end here of a text which is a comma and space SELECT LastName FirstName as LastFirstFROM Person PersonExample SQL with QuotesSo here I have an example where I ve declared some text and I m setting the text equal to my parent s car is broken And here you can see I have a possessive “s with a single quote DECLARE test as NVARCHAR SET text My Parent s car is broken My Parent s car is broken And what s happening here is just that you ll see some syntax errors and the SQL is recognizing this first single quote as being a delimiter It thinks that the text part is my parent and it doesn t know what s going on back here with the S and then the car is broken It doesn t understand that this quote that s really part of my phrase is data and that meant to be the delimiters for the statement To get around this what we do is we use a fancy term It s called escaping the quote and then in SQL the convention to do that is to put another quote in front of it My Parent s car is broken So now I have two single quotes and as you can see the whole thing has turned red so it s recognizing the whole thing as a text value And it says my parent s car is broken So this now is a proper statement See more examplesUse two single quotes select INSERT INTO San Endereco Endereco Id Logradouro Id Bairro Id CEP Logradouro Livre VALUES CAST Endereco Id as varchar CAST Logradouro Id as varchar CAST Bairro Id as varchar CAST CEP as varchar CAST Logradouro as varchar CAST Livre as varchar as teste FROM San Endereco Hope this post be thankful and useful to youThank You 2021-06-02 15:36:25
海外TECH DEV Community Dual WAN: Cómo configurar failover de internet y no morir en el intento https://dev.to/devschile/dual-wan-como-configurar-failover-de-internet-y-no-morir-en-el-intento-2ph7 Dual WAN Cómo configurar failover de internet y no morir en el intentoImportante Este post estáescrito teniendo en consideración Internet Service Providers ISP Chilenos Sin embargo el principio aplica para cualquier compañía de cualquier país Disclaimer No estoy afiliado con ninguna marca ni retailer Solo publico los modelos y dónde comprétodo con el fin de hacer el proceso más rápido si quieren implementar una solución similar en sus hogares IntroducciónUna de las ventajas de trabajar como programador programadora es tener la posibilidad en la gran mayoría de los casos de realizar nuestras labores desde la comodidad de nuestro hogar Para algunos esto puede ser mejor o peor pero sin duda requerimos de algo muy importante que no falle nuestro internet cuando más se requiere La pandemia ha puesto a prueba a los proveedores de internet y ha evidenciado en la gran mayoría de los casos que la infraestructura necesaria para brindar un buen servicio es muy precaria si a ti te estoy mirando VTR Es por ello que sin mucho conocimiento en redes nunca he sido muy bueno para ello sinceramente Me manejo en lo necesario para poder trabajar decidíemprender el hermoso viaje de configurar una conexión redundante de internet en mi hogar Lo que no sabía era que no todo era llegar y conectar Para alguien con muy pocos conocimientos en redes esto puede ser desafiante pero el objetivo es poder compartir mi experiencia y disminuir la brecha para que puedan lograr lo mismo por su cuenta En este post compartirémis hallazgos materiales necesarios asícomo consejos para hacer este camino menos tortuoso para otras personas Si ves que algún concepto no estácorrectamente explicado o errado por favor házmelo saber para poder corregirlo ¿Quées el Internet Failover Básicamente es un método que nos permite levantar una conexión secundaria de internet de forma automática en caso de fallo de una conexión primaria Como su descripción lo indica esto requiere tener de dos conexiones contratadas En mi caso particular tengo lo siguiente Un plan con VTR Lamentablemente es la única compañía que tiene factibilidad técnica en mi edificio Si bien tengo el plan más alto no es fibra óptica la experiencia normalmente no es muy buena Un plan con WOM Este plan que contratées de Banda Ancha Móvil Me pasaron un dispositivo pequeño que sirve como WiFi Hot Spot Lamentablemente este dispositivo no tiene ningún puerto RJ por lo que tendría que arreglármelas para poder dejarlo como mi conexión secundaria de internet Problemas y planificaciónLos problemas que tenía eran los siguientes La conexión de internet en mi hogar era muy inestable Tenía muchos problemas de continuidad de internet mis reuniones se caían frecuentemente las clases de mis hijos se interrumpían y venían reclamando cuando estaban en medio de sus partidas de Fortnite en los tiempos libres tragedia La pieza de mis hijos tenía muy mala cobertura de señal WiFi por lo que normalmente los veía jugando cerca del dintel de la puerta para agarrar mejor señal Intentamos con un repetidor pero sin muy buenos resultados Para poder abordar ambos problemas decidíir por una solución que me permitiese tener un enlace redundante de internet y mejor calidad de Wi Fi asícomo lo hacen las empresas pero en escala infinitamente más pequeña Eso si me di cuenta que no sabía mucho del tema Siempre he utilizado routers inalámbricos de nivel usuario pero configurar una conexión failover de internet requería que estudiase más de algunas cosas WAN LAN Balanceo de carga DHCP etc Literalmente estaba como el perrito del popular meme Para poder nivelar un poco los conocimientos decidíver algunos videos en Youtube El canal de NetworkChuck me sirviómucho y aparte explica de forma muy entretenida Luego de adquirir algo de bagaje técnico hice un plano de lo que tenía en mente La conexión primaria de internet VTR viene por un cable UTP de varios metros al segundo piso donde toda la familia habita La conexión secundaria de internet WOM inalámbrica se debe utilizar solo en caso de falla de la conexión primariaUn dispositivo debe poder determinar cuando una conexión falla para asíactivar una u otra Se necesita conectar mi PC mediante LAN y un Access Point para dar Wi Fi a todo el piso Paso Adquirir el equipo necesarioMe di cuenta que para poder continuar con mi proyecto necesitaba adquirir algo de equipamiento Luego de investigar y cotizar un poco di con los dispositivos que necesitaba adquirir Router LTE Este router permitiráutilizar una SIM Card que tiene contratado el plan de Internet Móvil Tiene antenas que utilizarápara captar la señal LTE El dispositivo que me entrególa compañía lamentablemente no tenía un puerto RJ para poder utilizarlo de una mejor forma Elegíel modelo D Link G N LTE Lo adquiríen el siguiente vínculo Router Load Balancer Este router permitirábalancear las conexiones de internet No tiene antenas solo puertos para conectar otros cables por lo que no me sirve para darle WiFi a la casa Elegíel modelo TP Link TL RT Lo adquiríen el siguiente vínculo Switch Este equipo permitiráconectar mi computador el access point y cualquier otro equipo que requiera conexión por cable Decidíir por uno auto administrado Elegíel modelo TP Link TL SFP Lo adquiríen el siguiente vínculo Access Point Este equipo permitiráconectar todos mis dispositivos Wi Fi y entregar internet inalámbrico a los computadores de la casa y dispositivos de la casa tablets y smart devices Elegíel modelo TP Link EAP Lo adquiríen el siguiente vínculo Paso  CablesMe fui por lo básico construir mis propios cables Nunca antes había construido cables UTP por lo que fue toda una experiencia aprender a hacerlo ni les digo cuantos metros de cable hice mal pero después le agarréel ritmo Necesitaba construir varios de diferentes longitudes por lo que decidícomprar un cable pre armado de metros y ese usarlo para construir cables más cortos También pueden adquirirlos ustedes si no quieren construir los suyos Existen varias categorías de cables Particularmente utilicéun Cat el cual cortéen varios cables mas pequeños y agreguélos conectores RJ en cada extremo utilizando una herramienta para crimpear es como un alicate especial que permite armar los cables Si van a armar sus propios cables recuerden siempre probarlos Para ello pueden adquirir un tester de cables UTP y ver que todas las luces enciendan en el orden correcto La siguiente imagen muestra como no deben quedar los cables Paso Configuración y conexiónYa era hora de la parte entretenida empezar a conectar cables a los dispositivos y ver las luces parpadear Luego de leer muy poco las instrucciones lógicamente nada funcionaba asíque decidípartir de y empezar a configurar dispositivo por dispositivo Configurando el Router G LTE D Link G N LTELo primero que hice fue configurar mi conexión secundaria de internet Saquéel chip del dispositivo que me entrególa compañía WOM y lo agreguéen este dispositivo La siguiente imagen muestra como debiese quedar Una vez puesto el chip era hora de prender el dispositivo Para poder ingresar al panel de administración conectémediante cable de red mi computador y este router Abríuna consola revisécual era la puerta de enlace predeterminada e ingreséal panel de configuración Si están en Windows lo que deben escribir en una terminal es ipconfig allLo primero serácambiar el segmento de IP de este router para asíevitar cualquier posible conflicto de IP Esto se logra en Settings gt LAN donde debemos ingresar lo siguiente IP Address Ingresar Subnet Mask Ingresar Hacemos click en Save and Apply La siguiente imagen muestra como debiese quedar Tendremos que ingresar nuevamente al panel de administración del router ya que le acabamos de cambiar su dirección IP En el navegador se debe ingresar a la dirección para asíentrar nuevamente El siguiente paso es la configuración de la conexión a internet móvil para ello se debe ingresar a Para poder conectarse al internet móvil WOM utilicéla siguiente configuración APN ingresar datacard IP Version seleccionar IPV Marcar Manual APN Marcar NAT Es muy importante aquíutilizar los datos entregados sobre todo el nombre de la APN dado que la información de los APN disponibles en internet para WOM hacen referencia a su uso en celulares más no en BAMs No quiero que este dispositivo emita señal Wi Fi para eso tenemos el access point por lo que apagarélas antenas Con esto solo se podráacceder a router vía ethernet Para ello debemos dirigirnos a Settings gt Wi Fi Si todo sale bien finalmente tendremos algo similar a esto Esquema de conexión La siguiente imagen muestra cual debe ser el esquema de conexión de nuestro Router G LTE Instrucciones Conectar con un cable ethernet el puerto LAN del Router G LTE al puerto WAN del balanceador de carga Resumen y comentarios de la configuración de este dispositivo Cambiar la IP por defecto del router para evitar asíconflictos de IP futuros Para que funcione bien el internet móvil se debe utilizar el APN datacard Se ha deshabilitado el acceso por Wi Fi Solo es posible acceder conectando un cable Ethernet a uno de los puertos del router Las antenas cumplirán la función de captar la señal G Es importante cambiar la contraseña de administrador por motivos de seguridad Nada es más fácil y propicio a los ataques que tener un usuario y contraseña por defecto admin admin Importante Configurando este dispositivo me di cuenta que posee un modo de Failover para internet Sin embargo no se si funciona de la misma manera en cuanto a performance que mi método Si alguien se anima a probarlo estaréatento Configurando el Balanceador de Carga TP Link TL RTEste dispositivo es el más importante ya que es el corazón de todo el proyecto por lo que pondremos especial cuidado en realizar todas las configuraciones en orden El primer paso serácambiar la IP por defecto del dispositivo para asíevitar cualquier posible conflicto de IP Nos dirigimos a la sección Network gt LAN en el campo IP Address ingresaremos y presionaremos el botón Save Tendremos que volver a ingresar al dispositivo pero ahora bajo la nueva dirección que acabamos de configurar Luego veremos la parte más importante que es configurar las dos conexiones de internet Para ello nos dirigimos a Network gt WAN En esa vista dejaremos la opción WAN Mode en y presionaremos el botón Save Nos dirigiremos a la pestaña WAN presionaremos el botón Connect Si todo sale bien veremos algo similar a esto Ahora necesitaremos conectar nuestra conexión primaria de internet y configurarla Para ello se debe conectar un cable Ethernet entre el modem VTR en mi caso y el puerto WAN del balanceador de carga El siguiente esquema muestra como debe quedar Volveremos a la sección anterior y esta vez nos dirigiremos a la pestaña WAN Presionamos el botón Connect Si todo sale bien veremos algo similar a esta imagen Importante Es necesario que ambas WANs estén en segmentos de red distintos sino no va a funcionar o al menos a mi no me funcionó Por ejemplo VTR en segmento XXX y WOM en segmento XXX Ya tenemos configuradas las dos conexiones a internet Ahora solo nos falta configurar el failover es decir cuando la conexión primaria no estédisponible debe automáticamente subir la segunda Para ello nos dirigimos al menu Transmission gt Load Balancing En esta pestaña haremos click sobre la opción Enable Load Balancing y presionaremos el botón Save Luego en la pestaña Link Backup haremos click sobre el botón Add En los campos nuevos ingresaremos Primary WAN WANSeconday WAN WANMode Failover Enable backup link when any primary WAN fails Status EnableEstálisto el failover Hagamos una prueba En la terminal de sistema escriban ping t devschile cl y esperen un par de pings Luego desconecten el cable desde el puerto WAN y TA DA Mágicamente comenzarán a tener nuevamente internet automáticamente después de un par de pings perdidos Por quésucede esto Porque recuerden que hemos configurado el link failover en nuestro dispositivo si la conexión primaria cae inmediatamente sube la segunda Resumen y comentarios de la configuración de este dispositivo Cambiar la IP por defecto del balanceador de carga para evitar asíconflictos de IP futuros Cambiar la contraseña por defecto de administración Se debe configurar previamente los WANs y antes de configurar el Link Backup Conectando el switch TP Link TL SFPAun no hemos terminado con todos los objetivos propuestos inicialmente Recuerden que aun mis hijos tienen muy mala señal Wi Fi y toda la instalación hasta el momento considera cables LAN Necesitamos poder configurar un switch que nos permita Conectar el access point Conectar mi PC del trabajo objetivo reciente Para ello debemos seguir el siguiente esquema de conexión Conectar un cable desde el puerto WAN del balanceador al puerto LAN del switchConectar un cable desde el puerto LAN del switch al puerto principal del access point Conectar un cable desde el puerto LAN del switch al puerto principal del PC Importante Hemos utilizado el puerto WAN del balanceador de carga porque el WAN Mode del balanceador estáen Esto quiere decir que solo los primeros dos puertos están en modo WAN el resto se puede utilizar como LAN Configurando el Access Point TP Link EAPEste es último paso de la configuración Debemos conectar el cable de red desde el puerto LAN al puerto principal de este dispositivo Se va a prender automáticamente Por quéocurre esto Porque este dispositivo obtiene corriente mediante el mismo cable de red Power Over Ethernet o PoE La configuración del access point es bastante sencilla Básicamente se debe configurar la s SSID s para que los dispositivos puedan conectarse mediante Wi Fi Para ello nos dirigimos a Wireless gt Wireless Settings y configuramos una nueva red Se debe elegir el tipo Ghz o Ghz luego presionar sobre el botón Add y finalmente llenar los campos necesarios para la nueva red A modo de ejemplo la siguiente imagen muestra la creación de una red llamada HUEMUL Esquema final de la topología de redYa hemos configurado todo lo necesario Ahora ya tendremos conexión redundante de internet y no tendremos que preocuparnos más por los problemas de conexión La siguiente imagen muestra como debiese quedar todo conectado ConclusionesEste proyecto ha de gran ayuda para mejorar la calidad de internet en casa y un gran aprendizaje personal Nunca he tenido muy buenos cimientos de redes y esto me obligóa estudiar un poco más al respecto Configurar internet failover no es del todo complejo pero si requiere estar atento a algunos detalles Espero que esta guía les haya sido de utilidad y les guste tanto como a mi me gustóredactarla 2021-06-02 15:22:47
Apple AppleInsider - Frontpage News Apple TV+ drama 'The Mosquito Coast' renewed for second season https://appleinsider.com/articles/21/06/02/apple-tv-drama-the-mosquito-coast-renewed-for-second-season?utm_medium=rss Apple TV drama x The Mosquito Coast x renewed for second seasonApple has renewed The Mosquito Coast on Apple TV for a second season just before the season one finale The Mosquito Coast renewed for second season The Mosquito Coast follows an inventor and his family on the run from the US government The seven episode first season was created on the th anniversary of the book that inspired the series Read more 2021-06-02 15:48:03
Apple AppleInsider - Frontpage News Student developers start receiving WWDC 2021 swag https://appleinsider.com/articles/21/06/02/student-developers-start-receiving-wwdc-2021-swag?utm_medium=rss Student developers start receiving WWDC swagThe annual Swift Student Challenge winners are getting their swag shipments just in time to virtually attend the Worldwide Developer Conference On Tuesday Apple highlighted three winners of its Swift Student Challenge though over winners were selected from different countries Winners this year will receive exclusive outerwear which consists of a hoodie emblazoned with both an Apple logo on the front and a large on the back as well as a blue WWDC beanie Read more 2021-06-02 15:38:04
Apple AppleInsider - Frontpage News Amazon Prime Day 2021 is on June 21 and 22 https://appleinsider.com/articles/21/06/02/amazon-announces-june-21-and-22-for-amazon-prime-day-2021?utm_medium=rss Amazon Prime Day is on June and Amazon has confirmed that it will be returning its Amazon Prime Day sales event to the summer with it happening on Monday June and Tuesday June Amazon Prime Day will be on June and June Following s coronavirus delays that saw the annual sales drive moved to October Amazon has this time brought it slightly forward Instead of the traditional July dates it will be running in the third week of June Read more 2021-06-02 15:37:07
海外TECH Engadget Donald Trump's blog is dead https://www.engadget.com/donald-trump-blog-platform-shuts-down-145838346.html?src=rss_b2c donald 2021-06-02 15:10:38
海外TECH Network World BrandPost: Improving User and Machine Experiences Using Automated Incident Detection https://www.networkworld.com/article/3620754/improving-user-and-machine-experiences-using-automated-incident-detection.html#tk.rss_all BrandPost Improving User and Machine Experiences Using Automated Incident Detection By Tim Vanevenhoven Director of Business Development and Strategic Partnerships As customers return to stores restaurants and public venues companies are increasingly leveraging mobile point of service tools to acquire and retain customers and run back office operations Whether it s a mobile point of sale terminal a portable receipt printer or a wireless inventory barcode scanner the business critical roles played by these devices requires always on network access and always up application performance Standard IT troubleshooting and diagnostic tools examine segments of the device to network to application roundtrip but they don t provide an end to end view of the journey They can t tell if the user s experience with an application is degrading or why To read this article in full please click here 2021-06-02 15:17:00
金融 RSS FILE - 日本証券業協会 株主コミュニティの統計情報・取扱状況 https://www.jsda.or.jp/shiryoshitsu/toukei/kabucommunity/index.html 株主コミュニティ 2021-06-02 15:30:00
金融 金融庁ホームページ 「令和2年金融商品販売法等改正に係る政令・内閣府令案等」に関する パブリックコメントの結果等について公表しました。 https://www.fsa.go.jp/news/r2/sonota/20210602/20210602.html 内閣府令 2021-06-02 17:00:00
海外ニュース Japan Times latest articles Japan pledges $800 million for global COVID-19 vaccination effort https://www.japantimes.co.jp/news/2021/06/03/national/science-health/japan-covax-donation/ Japan pledges million for global COVID vaccination effortThe COVAX Facility has beaten its goal of raising billion to secure billion doses enough for of the population of developing countries 2021-06-03 00:50:05
ニュース BBC News - Home Covid-19: UK's data encouraging, says government adviser https://www.bbc.co.uk/news/uk-57328138 lockdown 2021-06-02 15:18:26
ニュース BBC News - Home Ai Weiwei's Gilded Cage unveiled at Blenheim Palace https://www.bbc.co.uk/news/uk-england-oxfordshire-57334937 heritage 2021-06-02 15:11:12
ニュース BBC News - Home Covid: The Australian millennials desperate for vaccines https://www.bbc.co.uk/news/world-australia-57325514 people 2021-06-02 15:40:44
ニュース BBC News - Home Tottenham make contact with ex-Chelsea boss Conte https://www.bbc.co.uk/sport/football/57332318 manager 2021-06-02 15:33:14
ニュース BBC News - Home Kasatkina knocks out 10th seed Bencic on day four of French Open https://www.bbc.co.uk/sport/tennis/57331210 belinda 2021-06-02 15:06:50
北海道 北海道新聞 富士フイルムに不正アクセスか 情報流出含め調査中 https://www.hokkaido-np.co.jp/article/551140/ 不正アクセス 2021-06-03 00:17:00
北海道 北海道新聞 バレーボール女子、日本が5勝目 ネーションズリーグ https://www.hokkaido-np.co.jp/article/551139/ 日本 2021-06-03 00:14:00
Azure Azure の更新情報 Azure Security Center: Public preview updates for May 2021 https://azure.microsoft.com/ja-jp/updates/asc-may2021-2/ azure 2021-06-02 15:33:26
Azure Azure の更新情報 Azure Security Center: General availability updates for May 2021 https://azure.microsoft.com/ja-jp/updates/asc-may2021-1/ availability 2021-06-02 15:33:21

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)